summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/keyword-return-as-identifier.stderr
blob: 9e41d0ccbf69c5f06dd95b0abc40c7b1e88d1600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error: expected identifier, found keyword `return`
  --> $DIR/keyword-return-as-identifier.rs:4:9
   |
LL |     let return = "foo";
   |         ^^^^^^ expected identifier, found keyword
   |
help: escape `return` to use it as an identifier
   |
LL |     let r#return = "foo";
   |         ++

error: aborting due to 1 previous error