1 #[remain::check] main()2 fn main() { 3 let value = 0; 4 5 #[sorted] 6 match value { 7 0..=20 => {} 8 _ => {} 9 } 10 } 11