rust/src/test/ui/parser/bad-value-ident-true.stderr

13 lines
307 B
Plaintext
Raw Normal View History

2018-10-20 20:36:17 +00:00
error: expected identifier, found keyword `true`
--> $DIR/bad-value-ident-true.rs:1:4
2018-10-20 20:36:17 +00:00
|
2019-03-09 12:03:44 +00:00
LL | fn true() { }
2018-10-20 20:36:17 +00:00
| ^^^^ expected identifier, found keyword
help: you can escape reserved keywords to use them as identifiers
|
2019-03-09 12:03:44 +00:00
LL | fn r#true() { }
| ^^^^^^
2018-10-20 20:36:17 +00:00
error: aborting due to previous error