2016-12-26 14:34:03 +01: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.
|
|
|
|
|
|
|
|
#![feature(generators, generator_trait, conservative_impl_trait)]
|
|
|
|
|
2017-07-22 04:20:46 +02:00
|
|
|
use std::ops::{GeneratorState, Generator};
|
2016-12-26 14:34:03 +01:00
|
|
|
|
|
|
|
struct W<T>(T);
|
|
|
|
|
2018-03-20 00:48:41 +01: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 14:34:03 +01:00
|
|
|
impl<T: Generator<Return = ()>> Iterator for W<T> {
|
|
|
|
type Item = T::Yield;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
2018-03-20 00:48:41 +01:00
|
|
|
match unsafe { self.0.resume() } {
|
2017-07-22 04:20:46 +02:00
|
|
|
GeneratorState::Complete(..) => None,
|
|
|
|
GeneratorState::Yielded(v) => Some(v),
|
2016-12-26 14:34:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test() -> impl Generator<Return=(), Yield=u8> {
|
2017-07-07 15:31:03 -07:00
|
|
|
|| {
|
|
|
|
for i in 1..6 {
|
|
|
|
yield i
|
|
|
|
}
|
2017-07-05 14:57:26 -07:00
|
|
|
}
|
2016-12-26 14:34:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2017-07-05 14:57:26 -07:00
|
|
|
let end = 11;
|
2016-12-26 14:34:03 +01:00
|
|
|
|
2017-07-08 19:30:14 +02:00
|
|
|
let closure_test = |start| {
|
2017-07-10 23:13:52 +02:00
|
|
|
move || {
|
2017-07-08 19:30:14 +02:00
|
|
|
for i in start..end {
|
|
|
|
yield i
|
|
|
|
}
|
2017-07-05 14:57:26 -07:00
|
|
|
}
|
|
|
|
};
|
2016-12-26 14:34:03 +01:00
|
|
|
|
2017-07-08 19:30:14 +02:00
|
|
|
assert!(W(test()).chain(W(closure_test(6))).eq(1..11));
|
2016-12-26 14:34:03 +01:00
|
|
|
}
|