Sign in
rust
/
rust
/
741a3a7fc466df22e50f2b8d7dc697d22c8bdd41
/
.
/
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
()
{}
}
}