]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/parser/keyword-if-as-identifier.stderr
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[rust.git] / src / test / ui / parser / keyword-if-as-identifier.stderr
index 43fbcd7148a1db7d0c3914b0549c74affb93922c..a72030befb38da8472074347676a15c8eb638ca1 100644 (file)
@@ -3,6 +3,7 @@ error: expected identifier, found keyword `if`
    |
 LL |     let if = "foo";
    |         ^^ expected identifier, found keyword
+   |
 help: you can escape reserved keywords to use them as identifiers
    |
 LL |     let r#if = "foo";