]> git.proxmox.com Git - rustc.git/blob - tests/ui/const-generics/issues/issue-68615-array.min.stderr
New upstream version 1.74.1+dfsg1
[rustc.git] / tests / ui / const-generics / issues / issue-68615-array.min.stderr
1 error: `[usize; 0]` is forbidden as the type of a const generic parameter
2 --> $DIR/issue-68615-array.rs:6:21
3 |
4 LL | struct Foo<const V: [usize; 0] > {}
5 | ^^^^^^^^^^
6 |
7 = note: the only supported types are integers, `bool` and `char`
8 = help: add `#![feature(adt_const_params)]` to the crate attributes to enable more complex and user defined types
9
10 error: aborting due to previous error
11