2020-07-02 00:32:12 -05:00
|
|
|
// run-rustfix
|
|
|
|
|
2015-10-27 08:41:55 -05:00
|
|
|
fn main() {
|
|
|
|
let foo =
|
2022-01-12 14:43:24 -06:00
|
|
|
match //~ NOTE while parsing this `match` expression
|
2020-07-02 00:32:12 -05:00
|
|
|
Some(4).unwrap_or(5)
|
2019-10-28 13:08:53 -05:00
|
|
|
//~^ NOTE expected one of `.`, `?`, `{`, or an operator
|
2017-03-24 21:14:58 -05:00
|
|
|
; //~ NOTE unexpected token
|
|
|
|
//~^ ERROR expected one of `.`, `?`, `{`, or an operator, found `;`
|
2015-10-27 08:41:55 -05:00
|
|
|
|
|
|
|
println!("{}", foo)
|
|
|
|
}
|