2018-08-08 14:28:26 +02:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/const-tup-index-span.rs:3:23
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | const TUP: (usize,) = 5usize << 64;
|
2019-11-15 09:37:01 -08:00
|
|
|
| ^^^^^^^^^^^^ expected tuple, found `usize`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-11-13 14:16:56 -08:00
|
|
|
= note: expected tuple `(usize,)`
|
|
|
|
found type `usize`
|
2021-12-04 17:33:59 +00:00
|
|
|
help: use a trailing comma to create a tuple with one element
|
|
|
|
|
|
|
|
|
LL | const TUP: (usize,) = (5usize << 64,);
|
2021-12-04 22:22:23 +00:00
|
|
|
| + ++
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2022-02-16 10:56:01 +01:00
|
|
|
error[E0080]: evaluation of constant value failed
|
|
|
|
--> $DIR/const-tup-index-span.rs:6:18
|
|
|
|
|
|
|
|
|
LL | const ARR: [i32; TUP.0] = [];
|
|
|
|
| ^^^ referenced constant has errors
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2022-02-16 10:56:01 +01:00
|
|
|
Some errors have detailed explanations: E0080, E0308.
|
|
|
|
For more information about an error, try `rustc --explain E0080`.
|