rust/tests/ui/parser/match-refactor-to-expr.fixed

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
330 B
Rust
Raw Normal View History

2020-07-02 00:32:12 -05:00
// run-rustfix
fn main() {
let foo =
//~ NOTE while parsing this `match` expression
2020-07-02 00:32:12 -05:00
Some(4).unwrap_or(5)
//~^ NOTE expected one of `.`, `?`, `{`, or an operator
; //~ NOTE unexpected token
//~^ ERROR expected one of `.`, `?`, `{`, or an operator, found `;`
println!("{}", foo)
}