blob: 20983184a473a4d5cd397bc57ebe865edab40216 [file] [log] [blame]
// run-pass
// https://github.com/rust-lang/rust/issues/45044
const X: [u8; 1] = [0; 1];
fn main() {
match &X {
&X => println!("a"),
_ => println!("b"),
};
}