]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/match-refactor-to-expr.fixed
New upstream version 1.61.0+dfsg1
[rustc.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 }