]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/repeat_match.rs
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / consts / repeat_match.rs
1 // run-pass
2
3 // https://github.com/rust-lang/rust/issues/45044
4
5 const X: [u8; 1] = [0; 1];
6
7 fn main() {
8 match &X {
9 &X => println!("a"),
10 _ => println!("b"),
11 };
12 }