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