rust/src/test/ui/parser/issue-19096.stderr

22 lines
618 B
Plaintext
Raw Normal View History

2018-10-20 15:36:17 -05:00
error: expected one of `.`, `;`, `?`, `}`, or an operator, found `::`
--> $DIR/issue-19096.rs:3:8
2018-10-20 15:36:17 -05:00
|
2019-03-09 06:03:44 -06:00
LL | t.0::<isize>;
2018-10-20 15:36:17 -05:00
| ^^ expected one of `.`, `;`, `?`, `}`, or an operator here
error[E0308]: mismatched types
--> $DIR/issue-19096.rs:3:5
|
LL | fn main() {
| - expected `()` because of default return type
LL | let t = (42, 42);
2019-03-09 06:03:44 -06:00
LL | t.0::<isize>;
| ^^^ expected (), found integer
|
= note: expected type `()`
found type `{integer}`
error: aborting due to 2 previous errors
2018-10-20 15:36:17 -05:00
For more information about this error, try `rustc --explain E0308`.