]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/fn-const-param-infer.min.stderr
Auto merge of #75518 - davidtwco:issue-75326-polymorphization-symbol-mangling-v0...
[rust.git] / src / test / ui / const-generics / fn-const-param-infer.min.stderr
1 error: using function pointers as const generic parameters is forbidden
2   --> $DIR/fn-const-param-infer.rs:7:25
3    |
4 LL | struct Checked<const F: fn(usize) -> bool>;
5    |                         ^^^^^^^^^^^^^^^^^
6    |
7    = note: the only supported types are integers, `bool` and `char`
8    = note: more complex types are supported with `#[feature(const_generics)]`
9
10 error: aborting due to previous error
11