summaryrefslogtreecommitdiffstats
path: root/tests/ui/object-safety/call-when-assoc-ty-is-sized.rs
blob: 0b30a88fdd42c36a2e66ecab34c2fbf8c8b7faa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// check-pass
// revisions: current next
//[next] compile-flags: -Ztrait-solver=next

trait Foo {
    type Bar<'a>
    where
        Self: Sized;

    fn test(&self);
}

impl Foo for () {
    type Bar<'a> = () where Self: Sized;

    fn test(&self) {}
}

fn test(x: &dyn Foo) {
    x.test();
}

fn main() {
    test(&());
}