mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
529 B
Plaintext
15 lines
529 B
Plaintext
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`.
|