mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +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() {
|
|
}
|