Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
auxiliary
/
issue-9968.rs
blob: 8d795b59ea8be394a786da05cd96a440e362cc63 [
file
] [
log
] [
blame
] [
edit
]
pub
use
internal
::
core
::{
Trait
,
Struct
};
mod
internal
{
pub
mod
core
{
pub
struct
Struct
;
impl
Struct
{
pub
fn
init
()
->
Struct
{
Struct
}
}
pub
trait
Trait
{
fn
test
(&
self
)
{
private
();
}
}
impl
Trait
for
Struct
{}
fn
private
()
{
}
}
}