Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
error-codes
/
E0615.rs
blob: d04e4d5f7e1841fd0259ddcd1e2675ffa5bfa096 [
file
]
struct
Foo
{
x
:
u32
,
}
impl
Foo
{
fn
method
(&
self
)
{}
}
fn
main
()
{
let
f
=
Foo
{
x
:
0
};
f
.
method
;
//~ ERROR E0615
}