rust/tests/ui/coroutine/control-flow.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1001 B
Rust
Raw Normal View History

//@ run-pass
//@ revisions: default nomiropt
//@[nomiropt]compile-flags: -Z mir-opt-level=0
2023-10-19 21:46:28 +00:00
#![feature(coroutines, coroutine_trait)]
2017-07-07 23:12:44 +00:00
2023-10-19 16:06:43 +00:00
use std::ops::{CoroutineState, Coroutine};
2018-10-04 18:49:38 +00:00
use std::pin::Pin;
2017-07-07 23:12:44 +00:00
fn finish<T>(mut amt: usize, mut t: T) -> T::Return
2023-10-19 16:06:43 +00:00
where T: Coroutine<(), Yield = ()> + Unpin,
2017-07-07 23:12:44 +00:00
{
loop {
match Pin::new(&mut t).resume(()) {
2023-10-19 16:06:43 +00:00
CoroutineState::Yielded(()) => amt = amt.checked_sub(1).unwrap(),
CoroutineState::Complete(ret) => {
2017-07-07 23:12:44 +00:00
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
});
}