]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/fn-const-param-call.min.stderr
Rollup merge of #75464 - poliorcetics:intra-links-panic-and-ascii, r=jyn514
[rust.git] / src / test / ui / const-generics / fn-const-param-call.min.stderr
1 error: using function pointers as const generic parameters is forbidden
2   --> $DIR/fn-const-param-call.rs:12:25
3    |
4 LL | struct Wrapper<const F: fn() -> u32>;
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: using function pointers as const generic parameters is forbidden
11   --> $DIR/fn-const-param-call.rs:14:15
12    |
13 LL | impl<const F: fn() -> u32> Wrapper<F> {
14    |               ^^^^^^^^^^^
15    |
16    = note: the only supported types are integers, `bool` and `char`
17    = note: more complex types are supported with `#[feature(const_generics)]`
18
19 error: aborting due to 2 previous errors
20