]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/E0072.stderr
On recursive ADT, provide indirection structured suggestion
[rust.git] / src / test / ui / span / E0072.stderr
1 error[E0072]: recursive type `ListNode` has infinite size
2   --> $DIR/E0072.rs:1:1
3    |
4 LL | struct ListNode {
5    | ^^^^^^^^^^^^^^^ recursive type has infinite size
6 LL |     head: u8,
7 LL |     tail: Option<ListNode>,
8    |           ---------------- recursive without indirection
9    |
10 help: insert some indirection to make `ListNode` representable
11    |
12 LL |     tail: Box<Option<ListNode>>,
13    |           ^^^^                ^
14 LL |     tail: Rc<Option<ListNode>>,
15    |           ^^^                ^
16 LL |     tail: &Option<ListNode>,
17    |           ^
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0072`.