summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/in-trait/default-method-binder-shifting.rs
blob: ca41eb8bc71faa1ff157d192d558a6eed28c9638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// check-pass


trait Trait {
    type Type;

    // Check that we're adjusting bound vars correctly when installing the default
    // method projection assumptions.
    fn method(&self) -> impl Trait<Type = impl Sized + '_>;
}

trait Trait2 {
    type Type;

    fn method(&self) -> impl Trait2<Type = impl Trait2<Type = impl Sized + '_> + '_>;
}

fn main() {}