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