Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
error-codes
/
E0616.rs
blob: 98f87a83bc54429ab7c68f07afa2238bf7f36f34 [
file
] [
log
] [
blame
] [
edit
]
mod
a
{
pub
struct
Foo
{
x
:
u32
,
}
impl
Foo
{
pub
fn
new
()
->
Foo
{
Foo
{
x
:
0
}
}
}
}
fn
main
()
{
let
f
=
a
::
Foo
::
new
();
f
.
x
;
//~ ERROR E0616
}