Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-trait
/
method-suggestion-no-duplication.rs
blob: c5c966a959ae950499dae99599c1877305ddeeec [
file
] [
log
] [
blame
] [
edit
]
// 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
}