rust/tests/ui/pattern/inc-range-pat.rs
2025-11-27 14:13:58 -05:00

13 lines
389 B
Rust

//@ edition:2015..2021
//@ run-pass
// Test old and new syntax for inclusive range patterns.
#![allow(ellipsis_inclusive_range_patterns)]
fn main() {
assert!(match 42 { 0 ... 100 => true, _ => false });
assert!(match 42 { 0 ..= 100 => true, _ => false });
assert!(match 'x' { 'a' ... 'z' => true, _ => false });
assert!(match 'x' { 'a' ..= 'z' => true, _ => false });
}