blob: cc47b5b49c0b3d54c50f48cc5a134cd85e45dc51 [file] [log] [blame]
// run-pass
// https://github.com/rust-lang/rust/issues/25574
const A: [u8; 4] = *b"fooo";
fn main() {
match *b"xxxx" {
A => {},
_ => {}
}
}