2019-01-13 14:18:00 +01:00
|
|
|
error: expected identifier, found keyword `extern`
|
|
|
|
--> $DIR/keyword-extern-as-identifier-use.rs:1:5
|
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | use extern::foo;
|
2019-01-13 14:18:00 +01:00
|
|
|
| ^^^^^^ expected identifier, found keyword
|
|
|
|
help: you can escape reserved keywords to use them as identifiers
|
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | use r#extern::foo;
|
2019-01-13 14:18:00 +01:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|