mirror of https://github.com/rust-lang/rust
14 lines
323 B
Plaintext
14 lines
323 B
Plaintext
error: expected identifier, found keyword `else`
|
|
--> $DIR/keyword-else-as-identifier.rs:4:9
|
|
|
|
|
LL | let else = "foo";
|
|
| ^^^^ expected identifier, found keyword
|
|
|
|
|
help: escape `else` to use it as an identifier
|
|
|
|
|
LL | let r#else = "foo";
|
|
| ++
|
|
|
|
error: aborting due to 1 previous error
|
|
|