2016-12-26 07:34:03 -06:00
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2018-03-21 20:32:44 -05:00
|
|
|
#![feature(generators, generator_trait)]
|
2016-12-26 07:34:03 -06:00
|
|
|
|
2017-07-21 21:20:46 -05:00
|
|
|
use std::ops::{GeneratorState, Generator};
|
2016-12-26 07:34:03 -06:00
|
|
|
|
|
|
|
struct W<T>(T);
|
|
|
|
|
2018-03-19 18:48:41 -05:00
|
|
|
// This impl isn't safe in general, but the generator used in this test is movable
|
|
|
|
// so it won't cause problems.
|
2016-12-26 07:34:03 -06:00
|
|
|
impl<T: Generator<Return = ()>> Iterator for W<T> {
|
|
|
|
type Item = T::Yield;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
2018-03-19 18:48:41 -05:00
|
|
|
match unsafe { self.0.resume() } {
|
2017-07-21 21:20:46 -05:00
|
|
|
GeneratorState::Complete(..) => None,
|
|
|
|
GeneratorState::Yielded(v) => Some(v),
|
2016-12-26 07:34:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test() -> impl Generator<Return=(), Yield=u8> {
|
2017-07-07 17:31:03 -05:00
|
|
|
|| {
|
|
|
|
for i in 1..6 {
|
|
|
|
yield i
|
|
|
|
}
|
2017-07-05 16:57:26 -05:00
|
|
|
}
|
2016-12-26 07:34:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2017-07-05 16:57:26 -05:00
|
|
|
let end = 11;
|
2016-12-26 07:34:03 -06:00
|
|
|
|
2017-07-08 12:30:14 -05:00
|
|
|
let closure_test = |start| {
|
2017-07-10 16:13:52 -05:00
|
|
|
move || {
|
2017-07-08 12:30:14 -05:00
|
|
|
for i in start..end {
|
|
|
|
yield i
|
|
|
|
}
|
2017-07-05 16:57:26 -05:00
|
|
|
}
|
|
|
|
};
|
2016-12-26 07:34:03 -06:00
|
|
|
|
2017-07-08 12:30:14 -05:00
|
|
|
assert!(W(test()).chain(W(closure_test(6))).eq(1..11));
|
2016-12-26 07:34:03 -06:00
|
|
|
}
|