]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/method-suggestion-no-duplication.rs
Remove licenses
[rust.git] / src / test / ui / impl-trait / method-suggestion-no-duplication.rs
1 // issue #21405
2 // ignore-tidy-linelength
3
4 struct Foo;
5
6 fn foo<F>(f: F) where F: FnMut(Foo) {}
7
8 fn main() {
9     foo(|s| s.is_empty());
10     //~^ ERROR no method named `is_empty` found
11 }