Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
uniform-paths
/
auxiliary
/
issue-53691.rs
blob: 6eff37380efebd8e7eed9b3aa48574041b268116 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
mod
m
{
pub
fn
f
()
{}
}
mod
n
{
pub
fn
g
()
{}
}
pub
use
m
::
f
;
pub
use
n
::
g
;