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