Files
Android11/external/rust/crates/remain/tests/ui/unsupported.rs
2023-10-13 14:01:41 +00:00

11 lines
126 B
Rust

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