about summary refs log tree commit diff
path: root/tests/ui/const-generics/default-ty-closure.stderr
blob: 3f6ca9aea4ee895491e0b8a594518b2def1aab4c (plain)
1
2
3
4
5
6
7
8
9
10
error: using function pointers as const generic parameters is forbidden
  --> $DIR/default-ty-closure.rs:3:20
   |
LL | struct X<const FN: fn() = { || {} }>;
   |                    ^^^^
   |
   = note: the only supported types are integers, `bool`, and `char`

error: aborting due to 1 previous error