rust/tests/ui/binding/range-inclusive-pattern-precedence.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
440 B
Rust
Raw Normal View History

//@ run-pass
2018-09-23 00:07:56 +00:00
#![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!(); }
}
}