summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/fn-const-param-call.min.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/const-generics/fn-const-param-call.min.stderr')
-rw-r--r--tests/ui/const-generics/fn-const-param-call.min.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/const-generics/fn-const-param-call.min.stderr b/tests/ui/const-generics/fn-const-param-call.min.stderr
new file mode 100644
index 000000000..d984449e6
--- /dev/null
+++ b/tests/ui/const-generics/fn-const-param-call.min.stderr
@@ -0,0 +1,14 @@
+error: 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: 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
+