rust/src/test/ui/issues/issue-16939.rs
2018-12-25 21:08:33 -07:00

9 lines
155 B
Rust

// 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() {}