]> git.lizzy.rs Git - rust.git/blob - src/test/ui/infinite/infinite-tag-type-recursion.stderr
Rollup merge of #72583 - CAD97:vec-iter-asref-slice, r=dtolnay
[rust.git] / src / test / 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    | recursive type has infinite size
8    |
9    = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `MList` representable
10
11 error[E0391]: cycle detected when computing drop-check constraints for `MList`
12   --> $DIR/infinite-tag-type-recursion.rs:1:1
13    |
14 LL | enum MList { Cons(isize, MList), Nil }
15    | ^^^^^^^^^^
16    |
17    = note: ...which again requires computing drop-check constraints for `MList`, completing the cycle
18    = note: cycle used when computing dropck types for `Canonical { max_universe: U0, variables: [], value: ParamEnvAnd { param_env: ParamEnv { caller_bounds: [], reveal: UserFacing, def_id: None }, value: MList } }`
19
20 error: aborting due to 2 previous errors
21
22 Some errors have detailed explanations: E0072, E0391.
23 For more information about an error, try `rustc --explain E0072`.