blob: 0db6574b0737f318124e7f818bf63157040e2553 [file] [log] [blame]
// pp-exact
fn main() {
let x = match { 5 } { 1 => 5, 2 => 6, _ => 7, };
assert_eq!(x , 7);
}