blob: f4cac46f7cd64301286103a56b0264cb68d3583e [file] [log] [blame] [edit]
#![feature(postfix_match)]
fn main() {
Some(1).match { //~ non-exhaustive patterns
None => {},
}
}