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

error: aborting due to previous error