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