Sign in
◑
Theme
rust
/
rust
/
8662be8340e5e2bc06fe16b7df0a7d02ebdf5e64
/
.
/
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
()
{}
}
}