mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 21:32:03 +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 });
|
|
}
|