]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/E0072.stderr
Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup
[rust.git] / tests / 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    | ^^^^^^^^^^^^^^^
6 LL |     head: u8,
7 LL |     tail: Option<ListNode>,
8    |                  -------- recursive without indirection
9    |
10 help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle
11    |
12 LL |     tail: Option<Box<ListNode>>,
13    |                  ++++        +
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0072`.