aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-2431.rs
blob: b1bae0dbfcd74ecb3c6aec716d978d76abf2617c (plain)
1
2
3
4
5
6
pub fn main() {
    match 12 {
        12 | 13 | 14 => {}
        _ => {}
    }
}