blob: 72bf372e561d6e2004038b96c1deb1e5e4ca7218 [file] [log] [blame]
error[E0072]: recursive type `T1` has infinite size
--> $DIR/type-recursive.rs:1:1
|
LL | struct T1 {
| ^^^^^^^^^ recursive type has infinite size
LL | foo: isize,
LL | foolish: T1
| ----------- recursive without indirection
|
= help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `T1` representable
error: aborting due to previous error
For more information about this error, try `rustc --explain E0072`.