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

#![feature(type_alias_impl_trait)]

fn main() {}

type Region<'a> = impl std::fmt::Debug + 'a;


fn region<'b>(a: &'b ()) -> Region<'b> {
    a
}