blob: 5b675dc9f81fc7a6da6be9837e538e9d0ce01491 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0391]: cycle detected when computing layout of `S`
|
= note: ...which requires computing layout of `core::option::Option<<S as Mirror>::It>`...
= note: ...which requires computing layout of `core::option::Option<S>`...
= note: ...which again requires computing layout of `S`, completing the cycle
note: cycle used when elaborating drops for `main`
--> $DIR/issue-26548-recursion-via-normalize.rs:16:1
|
LL | fn main() {
| ^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0391`.
|