]> 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 2672959b7c68ee53ac528be34d7f8cea0d18e78a..73a50bc38bcf1ee4d2418823c07fbcc6f9d7a0d3 100644 (file)
@@ -1,8 +1,13 @@
-error: expected pattern, found keyword `impl`
+error: expected identifier, found keyword `impl`
   --> $DIR/keyword-impl-as-identifier.rs:4:9
    |
 LL |     let impl = "foo";
-   |         ^^^^ expected pattern
+   |         ^^^^ expected identifier, found keyword
+   |
+help: escape `impl` to use it as an identifier
+   |
+LL |     let r#impl = "foo";
+   |         ++
 
 error: aborting due to previous error