0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-22 10:25:09 +01:00
rust/tests/pretty/issue-19077.rs

12 lines
226 B
Rust

//
// 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 => (),
}
}