]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/match-refactor-to-expr.fixed
Rollup merge of #107354 - tspiteri:source-serif-4.005, r=GuillaumeGomez
[rust.git] / tests / 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 }