2018-09-06 07:41:12 -05:00
|
|
|
// run-pass
|
|
|
|
|
2023-10-19 16:46:28 -05:00
|
|
|
#![feature(coroutines, coroutine_trait)]
|
2017-10-07 09:36:28 -05:00
|
|
|
|
2023-10-19 11:06:43 -05:00
|
|
|
use std::ops::Coroutine;
|
2018-10-04 13:49:38 -05:00
|
|
|
use std::pin::Pin;
|
2017-10-07 09:36:28 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let b = |_| 3;
|
|
|
|
let mut a = || {
|
|
|
|
b(yield);
|
|
|
|
};
|
2020-01-25 13:03:10 -06:00
|
|
|
Pin::new(&mut a).resume(());
|
2017-10-07 09:36:28 -05:00
|
|
|
}
|