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