mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
225 B
Rust
12 lines
225 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 => (),
|
|
}
|
|
}
|