summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/const_signed_pat.rs
blob: d209e604486873a8b9a451f354fa58ef4c2ef119 (plain)
1
2
3
4
5
6
7
8
9
// build-pass (FIXME(62277): could be check-pass?)

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