1 2 3 4 5 6 7 8 9
// issue #21405 struct Foo; fn foo<F>(f: F) where F: FnMut(Foo) {} fn main() { foo(|s| s.is_empty()); //~^ ERROR no method named `is_empty` found }