]> git.proxmox.com Git - rustc.git/blob - tests/ui/consts/const-tup-index-span.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / consts / const-tup-index-span.stderr
1 error[E0308]: mismatched types
2 --> $DIR/const-tup-index-span.rs:3:23
3 |
4 LL | const TUP: (usize,) = 5usize << 64;
5 | ^^^^^^^^^^^^ expected tuple, found `usize`
6 |
7 = note: expected tuple `(usize,)`
8 found type `usize`
9 help: use a trailing comma to create a tuple with one element
10 |
11 LL | const TUP: (usize,) = (5usize << 64,);
12 | + ++
13
14 note: erroneous constant used
15 --> $DIR/const-tup-index-span.rs:6:18
16 |
17 LL | const ARR: [i32; TUP.0] = [];
18 | ^^^
19
20 error: aborting due to previous error
21
22 For more information about this error, try `rustc --explain E0308`.