2018-08-08 12:28:26 +00:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/const-tup-index-span.rs:3:23
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | const TUP: (usize,) = 5usize << 64;
|
2023-01-03 02:00:33 +00:00
|
|
|
| ^^^^^^^^^^^^ expected `(usize,)`, found `usize`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-11-13 22:16:56 +00: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 12:28:26 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2022-11-15 11:06:20 +00:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|