mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 16:21:28 +00:00
11 lines
118 B
Rust
11 lines
118 B
Rust
//@ check-pass
|
|
|
|
fn main() {
|
|
match true {
|
|
true => const {}
|
|
false => ()
|
|
}
|
|
const {}
|
|
()
|
|
}
|