rust/src/test/ui/parser/keywords-followed-by-double-colon.stderr

15 lines
362 B
Plaintext
Raw Normal View History

2018-10-20 15:36:17 -05:00
error: expected identifier, found `::`
2018-12-25 09:56:47 -06:00
--> $DIR/keywords-followed-by-double-colon.rs:4:11
2018-10-20 15:36:17 -05:00
|
LL | struct::foo();
| ^^ expected identifier
error: expected expression, found keyword `mut`
2018-12-25 09:56:47 -06:00
--> $DIR/keywords-followed-by-double-colon.rs:8:5
2018-10-20 15:36:17 -05:00
|
LL | mut::baz();
| ^^^ expected expression
error: aborting due to 2 previous errors