summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lifetimes/nested-binder-print.rs
blob: f97f349fd824359bae7db0d561a396e82035718c (plain)
1
2
3
4
5
6
7
8
9
10
struct TwoLt<'a, 'b>(&'a (), &'b ());
type Foo<'a> = fn(TwoLt<'_, 'a>);

fn foo() {
    let y: for<'a> fn(Foo<'a>);
    let x: u32 = y;
    //~^ ERROR mismatched types
}

fn main() {}