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

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

54 lines
1022 B
Rust
Raw Normal View History

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