]> git.proxmox.com Git - rustc.git/blob - src/test/ui/const-generics/const_evaluatable_checked/simple_fail.min.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / const-generics / const_evaluatable_checked / simple_fail.min.stderr
1 error: generic parameters must not be used inside of non trivial constant values
2 --> $DIR/simple_fail.rs:7:33
3 |
4 LL | type Arr<const N: usize> = [u8; N - 1];
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: aborting due to previous error
10