Files
rust/src/test/ui/non-constant-in-const-path.rs

8 lines
139 B
Rust
Raw Normal View History

2015-09-10 20:44:03 -07:00
fn main() {
let x = 0;
match 1 {
0 ..= x => {}
2018-01-16 09:31:48 +01:00
//~^ ERROR runtime values cannot be referenced in patterns
2015-09-10 20:44:03 -07:00
};
}