about summary refs log tree commit diff
path: root/tests/ui/rfcs/rfc-2005-default-binding-mode/range.rs
blob: 8795adcdd4202a275b614d6c7c30286688663ff5 (plain)
1
2
3
4
5
6
7
8
9
//@ run-pass
pub fn main() {
    let i = 5;
    match &&&&i {
        1 ..= 3 => panic!(),
        4 ..= 8 => {},
        _ => panic!(),
    }
}