]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/fn-const-param-call.stderr
Rollup merge of #74521 - andjo403:readme, r=nikic
[rust.git] / src / test / ui / const-generics / fn-const-param-call.stderr
1 warning: the feature `const_generics` is incomplete and may not be safe to use and/or cause compiler crashes
2   --> $DIR/fn-const-param-call.rs:1:12
3    |
4 LL | #![feature(const_generics)]
5    |            ^^^^^^^^^^^^^^
6    |
7    = note: `#[warn(incomplete_features)]` on by default
8    = note: see issue #44580 <https://github.com/rust-lang/rust/issues/44580> for more information
9
10 error: using function pointers as const generic parameters is forbidden
11   --> $DIR/fn-const-param-call.rs:8:25
12    |
13 LL | struct Wrapper<const F: fn() -> u32>;
14    |                         ^^^^^^^^^^^
15
16 error: using function pointers as const generic parameters is forbidden
17   --> $DIR/fn-const-param-call.rs:10:15
18    |
19 LL | impl<const F: fn() -> u32> Wrapper<F> {
20    |               ^^^^^^^^^^^
21
22 error: aborting due to 2 previous errors; 1 warning emitted
23