2018-10-20 23:36:17 +03:00
|
|
|
error: expected identifier, found reserved keyword `macro`
|
2019-01-06 18:33:05 +03:00
|
|
|
--> $DIR/macro-keyword.rs:1:4
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | fn macro() {
|
2018-10-20 23:36:17 +03:00
|
|
|
| ^^^^^ expected identifier, found reserved keyword
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-01-27 14:53:39 -08:00
|
|
|
help: escape `macro` to use it as an identifier
|
2018-12-30 11:52:15 -08:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | fn r#macro() {
|
2022-01-27 14:53:39 -08:00
|
|
|
| ++
|
2018-10-20 23:36:17 +03:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-10-20 23:36:17 +03:00
|
|
|
|