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