blob: 0857ac9dfb4d17cb3860dd1d0cbe9611606c8a30 [file] [log] [blame]
//@ run-pass
fn main() {
match 42 {
x if x < 7 => (),
_ => ()
}
}