2018-10-20 23:36:17 +03:00
|
|
|
error: expected identifier, found keyword `break`
|
2019-01-06 18:33:05 +03:00
|
|
|
--> $DIR/keyword.rs:1:9
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
|
|
|
LL | pub mod break {
|
|
|
|
| ^^^^^ expected identifier, found keyword
|
2018-12-30 11:52:15 -08:00
|
|
|
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
|
|
|
|
|