12 lines
134 B
Rust
12 lines
134 B
Rust
|
struct A<T> {
|
||
|
//~^ ERROR recursive type `A` has infinite size
|
||
|
x: T,
|
||
|
y: A<A<T>>,
|
||
|
}
|
||
|
|
||
|
struct B {
|
||
|
z: A<usize>
|
||
|
}
|
||
|
|
||
|
fn main() {}
|