summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-17431-5.stderr
blob: 44a90a6fe3898b4d48bede1043339e66b430a96e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0072]: recursive type `Bar` has infinite size
  --> $DIR/issue-17431-5.rs:5:1
   |
LL | struct Bar<T> { x: Bar<Foo> , marker: marker::PhantomData<T> }
   | ^^^^^^^^^^^^^      -------- recursive without indirection
   |
help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle
   |
LL | struct Bar<T> { x: Box<Bar<Foo>> , marker: marker::PhantomData<T> }
   |                    ++++        +

error: aborting due to previous error

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