]> git.lizzy.rs Git - rust.git/blob - tests/ui/inc-range-pat.rs
Rollup merge of #107615 - notriddle:notriddle/nbsp, r=GuillaumeGomez
[rust.git] / tests / ui / inc-range-pat.rs
1 // run-pass
2 // Test old and new syntax for inclusive range patterns.
3
4 #![allow(ellipsis_inclusive_range_patterns)]
5
6 fn main() {
7     assert!(match 42 { 0 ... 100 => true, _ => false });
8     assert!(match 42 { 0 ..= 100 => true, _ => false });
9
10     assert!(match 'x' { 'a' ... 'z' => true, _ => false });
11     assert!(match 'x' { 'a' ..= 'z' => true, _ => false });
12 }