mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-01 23:31:32 +00:00
8 lines
167 B
Rust
8 lines
167 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() {}
|