summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-15980.stderr
blob: c3c56c46a6d55b9d02c5a54f1265094b7a243eef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: expected identifier, found keyword `return`
  --> $DIR/issue-15980.rs:8:13
   |
LL |         Err(ref e) if e.kind == io::EndOfFile {
   |                                 ------------- while parsing this struct
LL |
LL |             return
   |             ^^^^^^ expected identifier, found keyword
   |
help: escape `return` to use it as an identifier
   |
LL |             r#return
   |             ++
help: you might have meant to start a match arm after the match guard
   |
LL |         Err(ref e) if e.kind == io::EndOfFile => {
   |                                               ++

error: aborting due to 1 previous error