Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
error-codes
/
E0615.rs
blob: d04e4d5f7e1841fd0259ddcd1e2675ffa5bfa096 [
file
] [
log
] [
blame
] [
edit
]
struct
Foo
{
x
:
u32
,
}
impl
Foo
{
fn
method
(&
self
)
{}
}
fn
main
()
{
let
f
=
Foo
{
x
:
0
};
f
.
method
;
//~ ERROR E0615
}