summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/fn-const-param-call.full.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/const-generics/fn-const-param-call.full.stderr')
-rw-r--r--tests/ui/const-generics/fn-const-param-call.full.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/const-generics/fn-const-param-call.full.stderr b/tests/ui/const-generics/fn-const-param-call.full.stderr
new file mode 100644
index 000000000..b55c24498
--- /dev/null
+++ b/tests/ui/const-generics/fn-const-param-call.full.stderr
@@ -0,0 +1,15 @@
+error[E0741]: using function pointers as const generic parameters is forbidden
+ --> $DIR/fn-const-param-call.rs:11:25
+ |
+LL | struct Wrapper<const F: fn() -> u32>;
+ | ^^^^^^^^^^^
+
+error[E0741]: using function pointers as const generic parameters is forbidden
+ --> $DIR/fn-const-param-call.rs:13:15
+ |
+LL | impl<const F: fn() -> u32> Wrapper<F> {
+ | ^^^^^^^^^^^
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0741`.