Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
traits
/
method-private.rs
blob: 4cd184854ecccf6377fcdb21d9f0e87e6e845029 [
file
] [
log
] [
blame
] [
edit
]
mod
inner
{
pub
trait
Bar
{
fn
method
(&
self
);
}
pub
struct
Foo
;
impl
Foo
{
fn
method
(&
self
)
{}
}
impl
Bar
for
Foo
{
fn
method
(&
self
)
{}
}
}
fn
main
()
{
let
foo
=
inner
::
Foo
;
foo
.
method
();
//~ ERROR is private
}