]> git.proxmox.com Git - rustc.git/blame - src/test/ui/pattern/const-pat-ice.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / pattern / const-pat-ice.rs
CommitLineData
1b1a35ee 1// check-pass
0731742a
XL
2
3const FOO: &&&u32 = &&&42;
4
5fn main() {
6 match unimplemented!() {
7 &&&42 => {},
8 FOO => {},
9 _ => {},
10 }
11}