mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-21 03:14:11 +00:00
11 lines
143 B
Rust
11 lines
143 B
Rust
![]() |
//@ check-pass
|
||
|
#![feature(inline_const)]
|
||
|
fn main() {
|
||
|
match true {
|
||
|
true => const {}
|
||
|
false => ()
|
||
|
}
|
||
|
const {}
|
||
|
()
|
||
|
}
|