]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/const-eval/const_signed_pat.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / consts / const-eval / const_signed_pat.rs
1 // check-pass
2
3 fn main() {
4 const MIN: i8 = -5;
5 match 5i8 {
6 MIN..=-1 => {},
7 _ => {},
8 }
9 }