summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-recursive-box-shadowed.stderr
blob: cb0e982877cf76c26b00af90df425a80405aad06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0072]: recursive type `Foo` has infinite size
  --> $DIR/type-recursive-box-shadowed.rs:7:1
   |
LL | struct Foo {
   | ^^^^^^^^^^
LL |
LL |     inner: Foo,
   |            --- recursive without indirection
   |
help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle
   |
LL |     inner: Box<Foo>,
   |            ++++   +

error: aborting due to previous error

For more information about this error, try `rustc --explain E0072`.