summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/keyword-return-as-identifier.stderr
blob: eeb8e468ba6215b35f1569ee311e3023b078f16f (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 previous error