]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/array-size-in-generic-struct-param.min.stderr
Add 'compiler/rustc_codegen_cranelift/' from commit '793d26047f994e23415f8f6bb5686ff2...
[rust.git] / src / test / ui / const-generics / array-size-in-generic-struct-param.min.stderr
1 error: generic parameters may not be used in const operations
2   --> $DIR/array-size-in-generic-struct-param.rs:9:48
3    |
4 LL | struct ArithArrayLen<const N: usize>([u32; 0 + N]);
5    |                                                ^ cannot perform const operation using `N`
6    |
7    = help: const parameters may only be used as standalone arguments, i.e. `N`
8
9 error: generic parameters may not be used in const operations
10   --> $DIR/array-size-in-generic-struct-param.rs:20:15
11    |
12 LL |     arr: [u8; CFG.arr_size],
13    |               ^^^ cannot perform const operation using `CFG`
14    |
15    = help: const parameters may only be used as standalone arguments, i.e. `CFG`
16
17 error: `Config` is forbidden as the type of a const generic parameter
18   --> $DIR/array-size-in-generic-struct-param.rs:18:21
19    |
20 LL | struct B<const CFG: Config> {
21    |                     ^^^^^^
22    |
23    = note: the only supported types are integers, `bool` and `char`
24    = note: more complex types are supported with `#[feature(const_generics)]`
25
26 error: aborting due to 3 previous errors
27