blob: 343bb98aeb6ed993aee60df06cfa0eb7ca8320da [file] [log] [blame]
fn main() {
let x = 0;
match 1 {
0 ..= x => {}
//~^ ERROR runtime values cannot be referenced in patterns
};
}