blob: 96f3b03dc924055c16e44f26ce26f62494354281 [file] [log] [blame]
error: expected identifier, found keyword `return`
--> $DIR/issue-15980.rs:10:13
|
LL | Err(ref e) if e.kind == io::EndOfFile {
| ------------- while parsing this struct
LL | //~^ NOTE while parsing this struct
LL | return
| ^^^^^^ expected identifier, found keyword
help: you can escape reserved keywords to use them as identifiers
|
LL | r#return
|
error: expected one of `.`, `=>`, `?`, or an operator, found `_`
--> $DIR/issue-15980.rs:15:9
|
LL | }
| - expected one of `.`, `=>`, `?`, or an operator here
LL | //~^ NOTE expected one of `.`, `=>`, `?`, or an operator here
LL | _ => {}
| ^ unexpected token
error: aborting due to 2 previous errors