summary refs log tree commit diff
path: root/tests/ui/impl-trait/recursive-coroutine.stderr
blob: d36a58a86434331dd066b2b387be669ab61fce97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0720]: cannot resolve opaque type
  --> $DIR/recursive-coroutine.rs:5: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 previous error

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