9 lines
168 B
Rust
9 lines
168 B
Rust
struct Baz { q: Option<Foo> }
|
|
//~^ ERROR recursive types `Baz` and `Foo` have infinite size
|
|
|
|
struct Foo { q: Option<Baz> }
|
|
|
|
impl Foo { fn bar(&self) {} }
|
|
|
|
fn main() {}
|