rust/src/test/ui/consts/const-tup-index-span.stderr

13 lines
371 B
Plaintext
Raw Normal View History

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;
| ^^^^^^^^^^^^ expected tuple, found `usize`
2018-08-08 12:28:26 +00:00
|
= note: expected tuple `(usize,)`
found type `usize`
2018-08-08 12:28:26 +00:00
error: aborting due to previous error
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0308`.