41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
14 lines
331 B
Plaintext
14 lines
331 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 1 previous error
|
|
|