about summary refs log tree commit diff
path: root/tests/ui/inline-const/expr-with-block.rs
blob: 07a1c9a10f5c26cd877e5cdabe962d956c99c159 (plain)
1
2
3
4
5
6
7
8
9
10
//@ check-pass
#![feature(inline_const)]
fn main() {
    match true {
        true => const {}
        false => ()
    }
    const {}
    ()
}