mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
53 lines
1001 B
Rust
53 lines
1001 B
Rust
//@ run-pass
|
|
|
|
//@ revisions: default nomiropt
|
|
//@[nomiropt]compile-flags: -Z mir-opt-level=0
|
|
|
|
#![feature(coroutines, coroutine_trait)]
|
|
|
|
use std::ops::{CoroutineState, Coroutine};
|
|
use std::pin::Pin;
|
|
|
|
fn finish<T>(mut amt: usize, mut t: T) -> T::Return
|
|
where T: Coroutine<(), Yield = ()> + Unpin,
|
|
{
|
|
loop {
|
|
match Pin::new(&mut t).resume(()) {
|
|
CoroutineState::Yielded(()) => amt = amt.checked_sub(1).unwrap(),
|
|
CoroutineState::Complete(ret) => {
|
|
assert_eq!(amt, 0);
|
|
return ret
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
fn main() {
|
|
finish(1, || yield);
|
|
finish(8, || {
|
|
for _ in 0..8 {
|
|
yield;
|
|
}
|
|
});
|
|
finish(1, || {
|
|
if true {
|
|
yield;
|
|
} else {
|
|
}
|
|
});
|
|
finish(1, || {
|
|
if false {
|
|
} else {
|
|
yield;
|
|
}
|
|
});
|
|
finish(2, || {
|
|
if { yield; false } {
|
|
yield;
|
|
panic!()
|
|
}
|
|
yield
|
|
});
|
|
}
|