summaryrefslogtreecommitdiffstats
path: root/tests/ui/regions/issue-102392.rs
blob: 87cc1a8e7a88d7070f315050fe168a61c3a64387 (plain)
1
2
3
4
5
6
fn g(f: for<'a> fn(fn(&str, &'a str))) -> bool {
    f
    //~^ ERROR mismatched types
}

fn main() {}