blob: af575a4ff36bafedeac3af7ee3509714a5849c68 [file] [log] [blame]
//@ run-pass
#![feature(type_alias_impl_trait)]
use std::iter::{once, Chain};
type I<A> = Chain<A, impl Iterator<Item = &'static str>>;
fn test2<A: Iterator<Item = &'static str>>(x: A) -> I<A> {
x.chain(once("5"))
}
fn main() {
assert_eq!(vec!["1", "3", "5"], test2(["1", "3"].iter().cloned()).collect::<Vec<_>>());
}