]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/match-refactor-to-expr.fixed
Merge commit '03f01bbe901d60b71cf2c5ec766aef5e532ab79d' into update_cg_clif-2020...
[rust.git] / src / test / ui / parser / match-refactor-to-expr.fixed
1 // run-rustfix
2
3 fn main() {
4     let foo =
5          //~ NOTE while parsing this match expression
6         Some(4).unwrap_or(5)
7         //~^ NOTE expected one of `.`, `?`, `{`, or an operator
8         ; //~ NOTE unexpected token
9         //~^ ERROR expected one of `.`, `?`, `{`, or an operator, found `;`
10
11     println!("{}", foo)
12 }