]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/different_byref.min.stderr
Auto merge of #75246 - pickfire:patch-5, r=Amanieu
[rust.git] / src / test / ui / const-generics / different_byref.min.stderr
1 error: using `[usize; 1]` as const generic parameters is forbidden
2   --> $DIR/different_byref.rs:8:23
3    |
4 LL | struct Const<const V: [usize; 1]> {}
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