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.stderr4
1 files changed, 4 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
index d984449e6..2d316fba1 100644
--- a/tests/ui/const-generics/fn-const-param-call.min.stderr
+++ b/tests/ui/const-generics/fn-const-param-call.min.stderr
@@ -3,12 +3,16 @@ error: using function pointers as const generic parameters is forbidden
|
LL | struct Wrapper<const F: fn() -> u32>;
| ^^^^^^^^^^^
+ |
+ = note: the only supported types are integers, `bool` and `char`
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> {
| ^^^^^^^^^^^
+ |
+ = note: the only supported types are integers, `bool` and `char`
error: aborting due to 2 previous errors