2018-05-03 11:26:58 -07:00
|
|
|
//@ run-rustfix
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
match &Some(3) {
|
|
|
|
|
&None => 1,
|
|
|
|
|
&Some(2) => { 3 }
|
|
|
|
|
//~^ ERROR expected one of `,`, `.`, `?`, `}`, or an operator, found `=>`
|
2019-10-28 11:08:53 -07:00
|
|
|
//~| NOTE expected one of `,`, `.`, `?`, `}`, or an operator
|
2018-05-03 11:26:58 -07:00
|
|
|
_ => 2
|
|
|
|
|
};
|
|
|
|
|
}
|