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