rust/tests/ui/consts/const-tup-index-span.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
532 B
Plaintext
Raw Normal View History

2018-08-08 20:28:26 +08:00
error[E0308]: mismatched types
2018-12-25 23:56:47 +08:00
--> $DIR/const-tup-index-span.rs:3:23
2018-08-08 20:28:26 +08:00
|
LL | const TUP: (usize,) = 5usize << 64;
| ^^^^^^^^^^^^ expected `(usize,)`, found `usize`
2018-08-08 20:28:26 +08:00
|
= note: expected tuple `(usize,)`
found type `usize`
help: use a trailing comma to create a tuple with one element
|
LL | const TUP: (usize,) = (5usize << 64,);
2021-12-05 06:22:23 +08:00
| + ++
2018-08-08 20:28:26 +08:00
error: aborting due to 1 previous error
2018-08-08 20:28:26 +08:00
For more information about this error, try `rustc --explain E0308`.