rust/tests/ui/const-generics/fn-const-param-infer.min.stderr

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

11 lines
328 B
Plaintext
Raw Normal View History

error: using function pointers as const generic parameters is forbidden
2020-11-17 11:44:21 +01:00
--> $DIR/fn-const-param-infer.rs:6:25
|
LL | struct Checked<const F: fn(usize) -> bool>;
| ^^^^^^^^^^^^^^^^^
|
= note: the only supported types are integers, `bool` and `char`
error: aborting due to 1 previous error