mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 11:11:14 +00:00
7 lines
135 B
Rust
7 lines
135 B
Rust
struct Foo { foo: Option<Option<Foo>> }
|
|
//~^ ERROR recursive type `Foo` has infinite size
|
|
|
|
impl Foo { fn bar(&self) {} }
|
|
|
|
fn main() {}
|