blob: 9787d8d67762179e6f01b64431d888c8e9899818 [file] [edit]
//! Regression test for https://github.com/rust-lang/rust/issues/31267
//@ run-pass
#[derive(Clone, Copy, Debug)]
struct Bar;
const BAZ: Bar = Bar;
#[derive(Debug)]
struct Foo(#[allow(dead_code)] [Bar; 1]);
struct Biz;
impl Biz {
const BAZ: Foo = Foo([BAZ; 1]);
}
fn main() {
let foo = Biz::BAZ;
println!("{:?}", foo);
}