]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-2718-a.stderr
Rollup merge of #101727 - est31:stabilize_map_first_last, r=m-ou-se
[rust.git] / src / test / ui / issues / issue-2718-a.stderr
1 error[E0072]: recursive type `Pong` has infinite size
2   --> $DIR/issue-2718-a.rs:8:5
3    |
4 LL |     pub struct Pong(SendPacket<Ping>);
5    |     ^^^^^^^^^^^^^^^ ---------------- recursive without indirection
6    |
7 help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle
8    |
9 LL |     pub struct Pong(Box<SendPacket<Ping>>);
10    |                     ++++                +
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0072`.