mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-04 19:12:50 +00:00
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() {}
|