rust/tests/ui/keyword/extern/keyword-extern-as-identifier-pat.stderr
2023-01-11 09:32:08 +00:00

14 lines
329 B
Plaintext

error: expected identifier, found keyword `extern`
--> $DIR/keyword-extern-as-identifier-pat.rs:2:9
|
LL | let extern = 0;
| ^^^^^^ expected identifier, found keyword
|
help: escape `extern` to use it as an identifier
|
LL | let r#extern = 0;
| ++
error: aborting due to previous error