mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
15 lines
432 B
Plaintext
15 lines
432 B
Plaintext
error: expected one of `.`, `;`, `?`, `}`, or an operator, found `::`
|
|
--> $DIR/issue-19096.rs:3:8
|
|
|
|
|
LL | t.0::<isize>;
|
|
| ^^ expected one of `.`, `;`, `?`, `}`, or an operator
|
|
|
|
error: expected one of `.`, `;`, `?`, `}`, or an operator, found `::`
|
|
--> $DIR/issue-19096.rs:8:8
|
|
|
|
|
LL | t.0::<isize>;
|
|
| ^^ expected one of `.`, `;`, `?`, `}`, or an operator
|
|
|
|
error: aborting due to 2 previous errors
|
|
|