]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/parser/keyword-pub-as-identifier.stderr
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[rust.git] / src / test / ui / parser / keyword-pub-as-identifier.stderr
index f81078b12bd3c5dc5c6e6cff2d45661d1872b517..10ff53e29161ef8f9c957c2110c9cd6f01de14d6 100644 (file)
@@ -3,6 +3,7 @@ error: expected identifier, found keyword `pub`
    |
 LL |     let pub = "foo";
    |         ^^^ expected identifier, found keyword
+   |
 help: you can escape reserved keywords to use them as identifiers
    |
 LL |     let r#pub = "foo";