diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/binding/range-inclusive-pattern-precedence.rs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/ui/binding/range-inclusive-pattern-precedence.rs b/src/test/ui/binding/range-inclusive-pattern-precedence.rs new file mode 100644 index 000000000..858239bb1 --- /dev/null +++ b/src/test/ui/binding/range-inclusive-pattern-precedence.rs @@ -0,0 +1,23 @@ +// run-pass +#![feature(box_patterns)] + +const VALUE: usize = 21; + +pub fn main() { + match &18 { + &(18..=18) => {} + _ => { unreachable!(); } + } + match &21 { + &(VALUE..=VALUE) => {} + _ => { unreachable!(); } + } + match Box::new(18) { + box (18..=18) => {} + _ => { unreachable!(); } + } + match Box::new(21) { + box (VALUE..=VALUE) => {} + _ => { unreachable!(); } + } +} |