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

error: aborting due to previous error