about summary refs log tree commit diff
path: root/tests/ui/consts/const-eval/const_signed_pat.rs
blob: 822cec2eaa7c55f96fd1a3ee98778864384984e1 (plain)
1
2
3
4
5
6
7
8
9
//@ check-pass

fn main() {
    const MIN: i8 = -5;
    match 5i8 {
        MIN..=-1 => {},
        _ => {},
    }
}