mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 17:25:45 +00:00
11 lines
142 B
Rust
11 lines
142 B
Rust
// check-pass
|
|
#![feature(inline_const)]
|
|
fn main() {
|
|
match true {
|
|
true => const {}
|
|
false => ()
|
|
}
|
|
const {}
|
|
()
|
|
}
|