Sign in
rust
/
rust
/
71bcc49e5ffcd34b9bc7e8410bd5ffcf4d27607c
/
.
/
src
/
tools
/
rustfmt
/
tests
/
source
/
visibility.rs
blob: 1c5919ccff97dc72ce1500a4bc5850149305d19f [
file
]
// #2398
pub
mod
outer_mod
{
pub
mod
inner_mod
{
pub
(
in outer_mod
)
fn
outer_mod_visible_fn
()
{}
pub
(
super
)
fn
super_mod_visible_fn
()
{}
pub
(
self
)
fn
inner_mod_visible_fn
()
{}
}
}