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
1.1 KiB
Rust
Raw Normal View History

//@ run-pass
//@ revisions: default nomiropt
//@[nomiropt]compile-flags: -Z mir-opt-level=0
#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
2017-07-08 07:12:44 +08:00
2023-10-20 00:06:43 +08:00
use std::ops::{CoroutineState, Coroutine};
2018-10-05 02:49:38 +08:00
use std::pin::Pin;
2017-07-08 07:12:44 +08:00
fn finish<T>(mut amt: usize, mut t: T) -> T::Return
2023-10-20 00:06:43 +08:00
where T: Coroutine<(), Yield = ()> + Unpin,
2017-07-08 07:12:44 +08:00
{
loop {
match Pin::new(&mut t).resume(()) {
2023-10-20 00:06:43 +08:00
CoroutineState::Yielded(()) => amt = amt.checked_sub(1).unwrap(),
CoroutineState::Complete(ret) => {
2017-07-08 07:12:44 +08:00
assert_eq!(amt, 0);
return ret
}
}
}
}
fn main() {
finish(1, #[coroutine] || yield);
finish(8, #[coroutine] || {
2017-07-08 07:12:44 +08:00
for _ in 0..8 {
yield;
}
});
finish(1, #[coroutine] || {
2017-07-08 07:12:44 +08:00
if true {
yield;
} else {
}
});
finish(1, #[coroutine] || {
2017-07-08 07:12:44 +08:00
if false {
} else {
yield;
}
});
finish(2, #[coroutine] || {
2017-07-08 07:12:44 +08:00
if { yield; false } {
yield;
panic!()
}
yield
});
}