rust/src/test/ui/parser/keyword.stderr

13 lines
311 B
Plaintext
Raw Normal View History

2018-10-20 23:36:17 +03:00
error: expected identifier, found keyword `break`
--> $DIR/keyword.rs:1:9
2018-10-20 23:36:17 +03:00
|
LL | pub mod break {
| ^^^^^ expected identifier, found keyword
help: you can escape reserved keywords to use them as identifiers
|
LL | pub mod r#break {
| ^^^^^^^
2018-10-20 23:36:17 +03:00
error: aborting due to previous error