mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 00:53:04 +00:00
12 lines
226 B
Rust
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 => (),
|
|
}
|
|
}
|