blob: 820193db70b0fbadf717633d6034cad9cc1307a2 [file] [log] [blame]
error: expected identifier, found keyword `break`
--> $DIR/keyword-break-as-identifier.rs:4:9
|
LL | let break = "foo";
| ^^^^^ expected identifier, found keyword
help: you can escape reserved keywords to use them as identifiers
|
LL | let r#break = "foo";
| ^^^^^^^
error: aborting due to previous error