]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-2718-a.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-2718-a.stderr
1 error[E0072]: recursive type `pingpong::pong` has infinite size
2   --> $DIR/issue-2718-a.rs:18:5
3    |
4 LL |     pub struct pong(send_packet<ping>);
5    |     ^^^^^^^^^^^^^^^^-----------------^^
6    |     |               |
7    |     |               recursive without indirection
8    |     recursive type has infinite size
9    |
10    = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `pingpong::pong` representable
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0072`.