rust/src/test/ui/parser/match-refactor-to-expr.fixed
2020-07-02 15:18:33 +09:00

12 lines
328 B
Rust

// run-rustfix
fn main() {
let foo =
//~ NOTE while parsing this match expression
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)
}