summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/in-trait/lifetime-in-associated-trait-bound.rs
blob: 49d36d6c99c9a1fb31170a1053016eee90d9ab4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// check-pass

#![feature(associated_type_bounds, return_position_impl_trait_in_trait)]

trait Trait {
    type Type;

    fn method(&self) -> impl Trait<Type: '_>;
}

impl Trait for () {
    type Type = ();

    fn method(&self) -> impl Trait<Type: '_> {
        ()
    }
}

fn main() {}