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