]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/parser/keyword-for-as-identifier.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / parser / keyword-for-as-identifier.stderr
index 312a635cddc2a3363223f91588c0b190785405bc..26407cc4d3ad2ff11e54fcf431eca7eefa2b8170 100644 (file)
@@ -4,10 +4,10 @@ error: expected identifier, found keyword `for`
 LL |     let for = "foo";
    |         ^^^ expected identifier, found keyword
    |
-help: you can escape reserved keywords to use them as identifiers
+help: escape `for` to use it as an identifier
    |
 LL |     let r#for = "foo";
-   |         ~~~~~
+   |         ++
 
 error: aborting due to previous error