blob: df457c13e70cbfeb53d0b99d31d02fea6f35de75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0733]: recursion in a coroutine requires boxing
--> $DIR/recursive-coroutine-indirect.rs:10:5
|
LL | move || {
| ^^^^^^^
LL | let x = coroutine_hold();
| - recursive call here
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0733`.
|