]> git.lizzy.rs Git - rust.git/blob - src/test/ui/non-constant-in-const-path.rs
Rollup merge of #61207 - taiki-e:arbitrary_self_types-lifetime-elision-2, r=Centril
[rust.git] / src / test / ui / non-constant-in-const-path.rs
1 fn main() {
2     let x = 0;
3     match 1 {
4         0 ..= x => {}
5         //~^ ERROR runtime values cannot be referenced in patterns
6     };
7 }