mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 11:37:50 +00:00
13 lines
140 B
Rust
13 lines
140 B
Rust
enum Foo {
|
|
Foo_(Bar)
|
|
}
|
|
|
|
enum Bar {
|
|
//~^ ERROR recursive type `Bar` has infinite size
|
|
BarNone,
|
|
BarSome(Bar)
|
|
}
|
|
|
|
fn main() {
|
|
}
|