// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. #![feature(generators, generator_trait, conservative_impl_trait)] use std::ops::{GeneratorState, Generator}; struct W(T); impl> Iterator for W { type Item = T::Yield; fn next(&mut self) -> Option { match self.0.resume() { GeneratorState::Complete(..) => None, GeneratorState::Yielded(v) => Some(v), } } } fn test() -> impl Generator { || { for i in 1..6 { yield i } } } fn main() { let end = 11; let closure_test = |start| { move || { for i in start..end { yield i } } }; assert!(W(test()).chain(W(closure_test(6))).eq(1..11)); }