summaryrefslogtreecommitdiffstats
path: root/tests/ui/type-alias-impl-trait/type-alias-impl-trait-assoc-dyn.rs
blob: f6a8302967060028e53e17fdfff5cd9dd0268550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// check-pass

#![feature(type_alias_impl_trait)]
#![allow(dead_code)]

type Foo = Box<dyn Iterator<Item = impl Send>>;

fn make_foo() -> Foo {
    Box::new(vec![1, 2, 3].into_iter())
}

fn main() {}