rust/src/test/ui/issues/issue-31267-additional.rs
2019-07-27 18:56:16 +03:00

21 lines
247 B
Rust

// run-pass
#[derive(Clone, Copy, Debug)]
struct Bar;
const BAZ: Bar = Bar;
#[derive(Debug)]
struct Foo([Bar; 1]);
struct Biz;
impl Biz {
const BAZ: Foo = Foo([BAZ; 1]);
}
fn main() {
let foo = Biz::BAZ;
println!("{:?}", foo);
}