]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/array-size-in-generic-struct-param.min.stderr
Auto merge of #75246 - pickfire:patch-5, r=Amanieu
[rust.git] / src / test / ui / const-generics / array-size-in-generic-struct-param.min.stderr
1 error: generic parameters must not be used inside of non trivial constant values
2   --> $DIR/array-size-in-generic-struct-param.rs:9:48
3    |
4 LL | struct ArithArrayLen<const N: usize>([u32; 0 + N]);
5    |                                                ^ non-trivial anonymous constants must not depend on the parameter `N`
6    |
7    = help: it is currently only allowed to use either `N` or `{ N }` as generic constants
8
9 error: generic parameters must not be used inside of non trivial constant values
10   --> $DIR/array-size-in-generic-struct-param.rs:20:15
11    |
12 LL |     arr: [u8; CFG.arr_size],
13    |               ^^^ non-trivial anonymous constants must not depend on the parameter `CFG`
14    |
15    = help: it is currently only allowed to use either `CFG` or `{ CFG }` as generic constants
16
17 error: using `Config` as const generic parameters is forbidden
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