summaryrefslogtreecommitdiffstats
path: root/src/test/ui/inline-const/const-match-pat-inference.rs
blob: d83ae6e983486fe3bd21018fc8f2679f4999faeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// check-pass

#![feature(inline_const_pat)]
#![allow(incomplete_features)]

fn main() {
    match 1u64 {
        0 => (),
        const { 0 + 1 } => (),
        const { 2 - 1 } ..= const { u64::MAX } => (),
    }
}