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

13 lines
411 B
Plaintext
Raw Normal View History

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