about summary refs log tree commit diff
path: root/tests/ui/impl-trait/in-trait/lifetime-in-associated-trait-bound.rs
blob: b29d71437b986a66f092f214f62135186002beb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//@ check-pass

trait Trait {
    type Type;

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

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

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

fn main() {}