summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/supertrait-hint-cycle-3.rs
blob: 8149474df196eb55ce09d1042ff30d8540b9829e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// check-pass


trait Foo<'a> {
    type Input;
}

impl<F: Fn(u32)> Foo<'_> for F {
    type Input = u32;
}

fn needs_super<F: for<'a> Fn(<F as Foo<'a>>::Input) + for<'a> Foo<'a>>(_: F) {}

fn main() {
    needs_super(|_: u32| {});
}