aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/unsupported.rs
blob: b11c9749e8a761a87f544f2b2cf4ec4f3289192f (plain)
1
2
3
4
5
6
7
8
9
10
#[remain::check]
fn main() {
    let value = 0;

    #[sorted]
    match value {
        0..=20 => {}
        _ => {}
    }
}