Sign in
fuchsia
/
third_party
/
rust
/
79e46694de009c8c826cafecb85f2bd3377b303a
/
.
/
tests
/
ui
/
suggestions
/
suggest-add-self.rs
blob: 40692c8df2053524b9320a81c144d2b040929ecb [
file
]
struct
X
(
i32
);
impl
X
{
pub
(
crate
)
fn
f
()
{
self
.
0
//~^ ERROR expected value, found module `self`
}
pub
fn
g
()
{
self
.
0
//~^ ERROR expected value, found module `self`
}
}
fn
main
()
{}