]> git.proxmox.com Git - rustc.git/blame - src/test/ui/non-constant-in-const-path.rs
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / ui / non-constant-in-const-path.rs
CommitLineData
c34b1796 1fn main() {
e9174d1e
SL
2 let x = 0;
3 match 1 {
8faf50e0 4 0 ..= x => {}
0531ce1d 5 //~^ ERROR runtime values cannot be referenced in patterns
e9174d1e 6 };
223e47cc 7}