2020-06-15 12:11:28 -07: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 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | fn foo() -> impl Quux {
|
2020-04-19 16:52:15 -07:00
|
|
|
| ^^^^^^^^^ recursive opaque type
|
|
|
|
...
|
|
|
|
LL | Foo(bar())
|
2020-09-02 10:40:56 +03:00
|
|
|
| ---------- returning here with type `Foo<impl Quux>`
|
2020-04-19 16:52:15 -07: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 12:11:28 -07: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 16:52:15 -07:00
|
|
|
LL | fn foo() -> impl Quux {
|
2023-01-26 03:51:26 +00:00
|
|
|
| --------- returning this type `Bar<impl Quux>`
|
2020-04-19 16:52:15 -07:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | fn bar() -> impl Quux {
|
2020-04-19 16:52:15 -07:00
|
|
|
| ^^^^^^^^^ recursive opaque type
|
|
|
|
...
|
|
|
|
LL | Bar(foo())
|
2020-09-02 10:40:56 +03:00
|
|
|
| ---------- returning here with type `Bar<impl Quux>`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2018-11-18 18:33:44 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2018-11-18 18:33:44 +00:00
|
|
|
For more information about this error, try `rustc --explain E0720`.
|