13 lines
133 B
Rust
13 lines
133 B
Rust
|
//@ known-bug: rust-lang/rust#124552
|
||
|
|
||
|
struct B;
|
||
|
|
||
|
struct Foo {
|
||
|
b: u32,
|
||
|
b: B,
|
||
|
}
|
||
|
|
||
|
static BAR: Foo = Foo { b: B };
|
||
|
|
||
|
fn main() {}
|