]> git.lizzy.rs Git - rust.git/blob - tests/ui/recursion/recursive-enum.stderr
Rollup merge of #106759 - compiler-errors:revert-105255, r=cjgillot
[rust.git] / tests / ui / recursion / recursive-enum.stderr
1 error[E0072]: recursive type `List` has infinite size
2   --> $DIR/recursive-enum.rs:1:1
3    |
4 LL | enum List<T> { Cons(T, List<T>), Nil }
5    | ^^^^^^^^^^^^           ------- recursive without indirection
6    |
7 help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle
8    |
9 LL | enum List<T> { Cons(T, Box<List<T>>), Nil }
10    |                        ++++       +
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0072`.