summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-recursive-box-shadowed.stderr
blob: c22d848f3797e645b017201532a419167d16d9cd (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 {
   | ^^^^^^^^^^ recursive type has infinite size
LL |
LL |     inner: Foo,
   |            --- recursive without indirection
   |
help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to make `Foo` representable
   |
LL |     inner: Box<Foo>,
   |            ++++   +

error: aborting due to previous error

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