summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/const_signed_pat.rs
blob: cb4fb46bd055cfa50989c5030c50db29a2189b70 (plain)
1
2
3
4
5
6
7
8
9
// compile-pass

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