android13/external/rust/crates/remain/tests/ui/unsupported.rs

11 lines
126 B
Rust

#[remain::check]
fn main() {
let value = 0;
#[sorted]
match value {
0..=20 => {}
_ => {}
}
}