Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Make sure we don't ICE when making an overloaded call with the
// wrong arity.
fn _foo<F: Fn()> (f: F) {
|t| f(t); //~ ERROR E0057
}
fn main() {}