blob: 7cef6de0cee80f6c4e73209ce7de3591763711ac [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