]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-tup-index-span.stderr
Only run tests on x86_64
[rust.git] / src / test / 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 type `(usize,)`
8               found type `usize`
9
10 error[E0080]: evaluation of constant value failed
11   --> $DIR/const-tup-index-span.rs:6:18
12    |
13 LL | const ARR: [i32; TUP.0] = [];
14    |                  ^^^ referenced constant has errors
15
16 error: aborting due to 2 previous errors
17
18 Some errors have detailed explanations: E0080, E0308.
19 For more information about an error, try `rustc --explain E0080`.