summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/issue-68645-codegen-fulfillment.rs
blob: aa505064f8c513bf9726ea0693561304b3e70c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Regression test for #68645

#![feature(generic_associated_types)]

trait Fun {
    type F<'a>: Fn() -> u32;

    fn callme<'a>(f: Self::F<'a>) -> u32 {
        f()
    }
}

impl<T> Fun for T {
    type F<'a> = Self;
    //~^ ERROR expected a `Fn<()>` closure, found `T`
}

fn main() {
    <&dyn Iterator<Item = u8>>::callme(&std::iter::once(1));
}