]> git.lizzy.rs Git - rust.git/blob - tests/ui/infinite/infinite-tag-type-recursion.stderr
Rollup merge of #107102 - compiler-errors:new-solver-new-candidats-4, r=lcnr
[rust.git] / tests / ui / infinite / infinite-tag-type-recursion.stderr
1 error[E0072]: recursive type `MList` has infinite size
2   --> $DIR/infinite-tag-type-recursion.rs:1:1
3    |
4 LL | enum MList { Cons(isize, MList), 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 MList { Cons(isize, Box<MList>), Nil }
10    |                          ++++     +
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0072`.