blob: 4a1b63d5c9357b7e27690fdfd8170feba1713c6d [file] [log] [blame]
error: expected identifier, found reserved keyword `typeof`
--> $DIR/keyword-typeof.rs:2:9
|
LL | let typeof = ();
| ^^^^^^ expected identifier, found reserved keyword
help: you can escape reserved keywords to use them as identifiers
|
LL | let r#typeof = ();
| ^^^^^^^^
error: aborting due to previous error