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