2020-06-15 19:11:28 +00:00
|
|
|
error[E0720]: cannot resolve opaque type
|
2018-11-18 18:33:44 +00:00
|
|
|
--> $DIR/infinite-impl-trait-issue-38064.rs:8:13
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn foo() -> impl Quux {
|
2020-04-19 23:52:15 +00:00
|
|
|
| ^^^^^^^^^ recursive opaque type
|
|
|
|
...
|
|
|
|
LL | Foo(bar())
|
2020-09-02 07:40:56 +00:00
|
|
|
| ---------- returning here with type `Foo<impl Quux>`
|
2020-04-19 23:52:15 +00:00
|
|
|
...
|
|
|
|
LL | fn bar() -> impl Quux {
|
2023-01-26 03:51:26 +00:00
|
|
|
| --------- returning this type `Foo<impl Quux>`
|
2018-11-18 18:33:44 +00:00
|
|
|
|
2020-06-15 19:11:28 +00:00
|
|
|
error[E0720]: cannot resolve opaque type
|
2018-11-18 18:33:44 +00:00
|
|
|
--> $DIR/infinite-impl-trait-issue-38064.rs:14:13
|
|
|
|
|
|
2020-04-19 23:52:15 +00:00
|
|
|
LL | fn foo() -> impl Quux {
|
2023-01-26 03:51:26 +00:00
|
|
|
| --------- returning this type `Bar<impl Quux>`
|
2020-04-19 23:52:15 +00:00
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn bar() -> impl Quux {
|
2020-04-19 23:52:15 +00:00
|
|
|
| ^^^^^^^^^ recursive opaque type
|
|
|
|
...
|
|
|
|
LL | Bar(foo())
|
2020-09-02 07:40:56 +00:00
|
|
|
| ---------- returning here with type `Bar<impl Quux>`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2018-11-18 18:33:44 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2018-11-18 18:33:44 +00:00
|
|
|
For more information about this error, try `rustc --explain E0720`.
|