mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
12 lines
145 B
Rust
12 lines
145 B
Rust
struct Foo<T> {
|
|
//~^ ERROR recursive type `Foo` has infinite size
|
|
x: Foo<[T; 1]>,
|
|
y: T,
|
|
}
|
|
|
|
struct Bar {
|
|
x: Foo<Bar>,
|
|
}
|
|
|
|
fn main() {}
|