]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/parser/keyword-try-as-identifier-edition2018.stderr
Add 'compiler/rustc_codegen_cranelift/' from commit '793d26047f994e23415f8f6bb5686ff2...
[rust.git] / src / test / ui / parser / keyword-try-as-identifier-edition2018.stderr
index f71b889a30db517a9bf480f053f9c1823f0172f8..fcd717d6e67127b73a8c3a715906537a4cb5b9c6 100644 (file)
@@ -3,6 +3,7 @@ error: expected identifier, found reserved keyword `try`
    |
 LL |     let try = "foo";
    |         ^^^ expected identifier, found reserved keyword
+   |
 help: you can escape reserved keywords to use them as identifiers
    |
 LL |     let r#try = "foo";