summaryrefslogtreecommitdiffstats
path: root/tests/ui/type-alias-impl-trait/issue-69323.rs
blob: a9bd6daf2acf77fbd96f6e4308e67298f5ea1c16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// check-pass

#![feature(type_alias_impl_trait)]

use std::iter::{once, Chain};

fn test1<A: Iterator<Item = &'static str>>(x: A) -> Chain<A, impl Iterator<Item = &'static str>> {
    x.chain(once(","))
}

type I<A> = Chain<A, impl Iterator<Item = &'static str>>;
fn test2<A: Iterator<Item = &'static str>>(x: A) -> I<A> {
    x.chain(once(","))
}

fn main() {}