Sign in
fuchsia
/
third_party
/
rust
/
7e8a8c9cb152530c9833a389e7a7d79c7db693cc
/
.
/
tests
/
ui
/
super.rs
blob: 69aff4f98e0048bd4a194bc6dd1a0ffc27a452af [
file
] [
log
] [
blame
]
//@ run-pass
#![
allow
(
dead_code
)]
pub
mod
a
{
pub
fn
f
()
{}
pub
mod
b
{
fn
g
()
{
super
::
f
();
}
}
}
pub
fn
main
()
{
}