rust/tests/ui/const-generics/default-ty-closure.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
303 B
Plaintext
Raw Normal View History

2023-12-23 11:45:02 -06:00
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`
2023-12-23 11:45:02 -06:00
error: aborting due to 1 previous error