rust/tests/ui/regions/issue-102392.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
103 B
Rust
Raw Normal View History

2022-09-30 12:21:17 +00:00
fn g(f: for<'a> fn(fn(&str, &'a str))) -> bool {
f
//~^ ERROR mismatched types
}
fn main() {}