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