blob: 6aa97add7b0f42ee2a4c8590836e1ec0d1ba08e9 [file] [log] [blame]
error: expected one of `.`, `;`, `?`, `}`, or an operator, found `::`
--> $DIR/issue-19096.rs:3:8
|
LL | t.0::<isize>;
| ^^ 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);
LL | t.0::<isize>;
| ^^^ expected (), found integer
|
= note: expected type `()`
found type `{integer}`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.