]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/parser/keyword-impl-as-identifier.stderr
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[rust.git] / src / test / ui / parser / keyword-impl-as-identifier.stderr
index 01886eb45cb6da41c9210bfc2389cd84bb4868e2..e51c60ed494f3f427f80833c58483c291c126574 100644 (file)
@@ -3,6 +3,7 @@ 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
    |
 LL |     let r#impl = "foo";