rust/tests/ui/impl-trait/issues/infinite-impl-trait-issue-38064.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
829 B
Plaintext
Raw Normal View History

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