Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
confuse-field-and-method
/
issue-18343.rs
blob: bc2d73fae11b6f7344062ab83d25dfa8c15d19e7 [
file
] [
log
] [
blame
] [
edit
]
struct
Obj
<
F
>
where F
:
FnMut
()
->
u32
{
closure
:
F
,
}
fn
main
()
{
let
o
=
Obj
{
closure
:
||
42
};
o
.
closure
();
//~^ ERROR no method named `closure` found
}