blob: c57ea0cf02d144fa5c63763d0572b1f8287600ec [file] [log] [blame]
//
// Testing that unsafe blocks in match arms are followed by a comma
//@ pp-exact
fn main() {
match true {
true if true => (),
false if false => unsafe {},
true => {}
false => (),
}
}