about summary refs log tree commit diff
path: root/src/test/ui/non-constant-in-const-path.rs
blob: 343bb98aeb6ed993aee60df06cfa0eb7ca8320da (plain)
1
2
3
4
5
6
7
fn main() {
    let x = 0;
    match 1 {
        0 ..= x => {}
        //~^ ERROR runtime values cannot be referenced in patterns
    };
}