mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
365 B
Rust
13 lines
365 B
Rust
// 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 });
|
|
}
|