os-rust/src/test/ui/parser/macro-keyword.stderr

13 lines
445 B
Text
Raw Normal View History

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
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