2018-08-08 07:28:26 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/const-tup-index-span.rs:13:23
|
|
|
|
|
|
|
|
|
LL | const TUP: (usize,) = 5usize << 64;
|
|
|
|
| ^^^^^^^^^^^^ expected tuple, found usize
|
|
|
|
|
|
|
|
|
= note: expected type `(usize,)`
|
|
|
|
found type `usize`
|
|
|
|
|
2018-08-26 08:19:34 -05:00
|
|
|
error[E0080]: evaluation of constant value failed
|
|
|
|
--> $DIR/const-tup-index-span.rs:16:18
|
|
|
|
|
|
|
|
|
LL | const ARR: [i32; TUP.0] = [];
|
|
|
|
| ^^^ referenced constant has errors
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-08-26 08:19:34 -05:00
|
|
|
Some errors occurred: E0080, E0308.
|
|
|
|
For more information about an error, try `rustc --explain E0080`.
|