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