mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 21:32:03 +00:00
7 lines
134 B
Rust
7 lines
134 B
Rust
enum Foo { Voo(Option<Option<Foo>>) }
|
|
//~^ ERROR recursive type `Foo` has infinite size
|
|
|
|
impl Foo { fn bar(&self) {} }
|
|
|
|
fn main() { }
|