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