summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/recursive-coroutine.current.stderr
blob: e838634ed087c0e1c85667b956e6371d27a57494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0720]: cannot resolve opaque type
  --> $DIR/recursive-coroutine.rs:7:13
   |
LL | fn foo() -> impl Coroutine<Yield = (), Return = ()> {
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ recursive opaque type
...
LL |         let mut gen = Box::pin(foo());
   |             ------- coroutine captures itself here

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0720`.