2018-10-20 23:36:17 +03:00
|
|
|
error: expected identifier, found reserved keyword `macro`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/macro-keyword.rs:3:4
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
|
|
|
LL | fn macro() { //~ ERROR expected identifier, found reserved keyword `macro`
|
|
|
|
| ^^^^^ expected identifier, found reserved keyword
|
2018-12-30 11:52:15 -08:00
|
|
|
help: you can escape reserved keywords to use them as identifiers
|
|
|
|
|
|
|
|
|
LL | fn r#macro() { //~ ERROR expected identifier, found reserved keyword `macro`
|
|
|
|
| ^^^^^^^
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|