2018-10-20 23:36:17 +03:00
|
|
|
error: expected identifier, found `::`
|
2019-01-06 18:33:05 +03:00
|
|
|
--> $DIR/keywords-followed-by-double-colon.rs:2:11
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
|
|
|
LL | struct::foo();
|
|
|
|
| ^^ expected identifier
|
|
|
|
|
|
|
|
error: expected expression, found keyword `mut`
|
2019-01-06 18:33:05 +03:00
|
|
|
--> $DIR/keywords-followed-by-double-colon.rs:6:5
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
|
|
|
LL | mut::baz();
|
|
|
|
| ^^^ expected expression
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|