summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-35423.rs
blob: 202ffcc1d0d61a38324fd7aa6e3e0a2da5bf661f (plain)
1
2
3
4
5
6
7
8
9
// run-pass
fn main () {
    let x = 4;
    match x {
        ref r if *r < 0 => println!("got negative num {} < 0", r),
        e @ 1 ..= 100 => println!("got number within range [1,100] {}", e),
        _ => println!("no"),
    }
}