about summary refs log tree commit diff
path: root/src/test/ui/closures/issue-41366.rs
blob: 5cae0e76d1acbcfa263754ace0d2fc65729b411e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
trait T<'x> {
    type V;
}

impl<'g> T<'g> for u32 {
    type V = u16;
}

fn main() {
    (&|_|()) as &dyn for<'x> Fn(<u32 as T<'x>>::V);
    //~^ ERROR: type mismatch in closure arguments
    //~| ERROR: type mismatch resolving
}