summary refs log tree commit diff
path: root/src/test/ui/const-generics/issue-61522-array-len-succ.min.stderr
blob: 526807f0a247469e728ae6f6e32cae0697a99401 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: generic parameters may not be used in const operations
  --> $DIR/issue-61522-array-len-succ.rs:7:45
   |
LL | pub struct MyArray<const COUNT: usize>([u8; COUNT + 1]);
   |                                             ^^^^^ cannot perform const operation using `COUNT`
   |
   = help: const parameters may only be used as standalone arguments, i.e. `COUNT`

error: generic parameters may not be used in const operations
  --> $DIR/issue-61522-array-len-succ.rs:12:30
   |
LL |     fn inner(&self) -> &[u8; COUNT + 1] {
   |                              ^^^^^ cannot perform const operation using `COUNT`
   |
   = help: const parameters may only be used as standalone arguments, i.e. `COUNT`

error: aborting due to 2 previous errors