]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/issue-61522-array-len-succ.min.stderr
Add note to use nightly when using expr in const generics
[rust.git] / src / test / ui / const-generics / issue-61522-array-len-succ.min.stderr
1 error: generic parameters may not be used in const operations
2   --> $DIR/issue-61522-array-len-succ.rs:7:45
3    |
4 LL | pub struct MyArray<const COUNT: usize>([u8; COUNT + 1]);
5    |                                             ^^^^^ cannot perform const operation using `COUNT`
6    |
7    = help: const parameters may only be used as standalone arguments, i.e. `COUNT`
8    = note: use feature(const_generics) and feature(const_evaluatable_checked) to enable this
9
10 error: generic parameters may not be used in const operations
11   --> $DIR/issue-61522-array-len-succ.rs:12:30
12    |
13 LL |     fn inner(&self) -> &[u8; COUNT + 1] {
14    |                              ^^^^^ cannot perform const operation using `COUNT`
15    |
16    = help: const parameters may only be used as standalone arguments, i.e. `COUNT`
17    = note: use feature(const_generics) and feature(const_evaluatable_checked) to enable this
18
19 error: aborting due to 2 previous errors
20