mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
54 lines
1022 B
Rust
54 lines
1022 B
Rust
// run-pass
|
|
|
|
// revisions: default nomiropt
|
|
//[nomiropt]compile-flags: -Z mir-opt-level=0
|
|
|
|
#![feature(coroutines, coroutine_trait)]
|
|
|
|
use std::marker::Unpin;
|
|
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
|
|
});
|
|
}
|