summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type-alias-impl-trait/type-alias-impl-trait-struct.rs
blob: 1a4064055db6532fcfa253354e4b152fc3fd4e8d (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 = Vec<impl Send>;

fn make_foo() -> Foo {
    vec![true, false]
}

fn main() {}