blob: 391872476fccdfff56c333e2638ab4037dbecff3 [file] [log] [blame]
// check-pass
#![feature(inline_const)]
fn main() {
match true {
true => const {}
false => ()
}
const {}
()
}