summary refs log tree commit diff
path: root/src/test/ui/issues/issue-27895.rs
blob: 0018ac1bdf164a1fcf68ce7d5a7681fdd3d34066 (plain)
1
2
3
4
5
6
7
8
9
10
fn main() {
    let i = 5;
    let index = 6;

    match i {
        0..=index => println!("winner"),
        //~^ ERROR runtime values cannot be referenced in patterns
        _ => println!("hello"),
    }
}