rust/tests/ui/coroutine/iterator-count.rs

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

44 lines
929 B
Rust
Raw Normal View History

// run-pass
2023-10-19 21:46:28 +00:00
#![feature(coroutines, coroutine_trait)]
2016-12-26 13:34:03 +00:00
2023-10-19 16:06:43 +00:00
use std::ops::{Coroutine, CoroutineState};
2018-10-04 18:49:38 +00:00
use std::pin::Pin;
2016-12-26 13:34:03 +00:00
struct W<T>(T);
2023-10-19 21:46:28 +00:00
// This impl isn't safe in general, but the coroutine used in this test is movable
// so it won't cause problems.
2023-10-19 16:06:43 +00:00
impl<T: Coroutine<(), Return = ()> + Unpin> Iterator for W<T> {
2016-12-26 13:34:03 +00:00
type Item = T::Yield;
fn next(&mut self) -> Option<Self::Item> {
match Pin::new(&mut self.0).resume(()) {
2023-10-19 16:06:43 +00:00
CoroutineState::Complete(..) => None,
CoroutineState::Yielded(v) => Some(v),
2016-12-26 13:34:03 +00:00
}
}
}
2023-10-19 16:06:43 +00:00
fn test() -> impl Coroutine<(), Return = (), Yield = u8> + Unpin {
2017-07-07 22:31:03 +00:00
|| {
for i in 1..6 {
yield i
}
2017-07-05 21:57:26 +00:00
}
2016-12-26 13:34:03 +00:00
}
fn main() {
2017-07-05 21:57:26 +00:00
let end = 11;
2016-12-26 13:34:03 +00:00
let closure_test = |start| {
2017-07-10 21:13:52 +00:00
move || {
for i in start..end {
yield i
}
2017-07-05 21:57:26 +00:00
}
};
2016-12-26 13:34:03 +00:00
assert!(W(test()).chain(W(closure_test(6))).eq(1..11));
2016-12-26 13:34:03 +00:00
}