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