Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
shadowed
/
shadowed-use-visibility.rs
blob: 6b801972f4179bd5002c5d3594e0c44cfafa3942 [
file
] [
log
] [
blame
] [
edit
]
mod
foo
{
pub
fn
f
()
{}
use
foo
as
bar
;
pub
use
self
::
f
as
bar
;
}
mod
bar
{
use
foo
::
bar
::
f
as
g
;
//~ ERROR module import `bar` is private
use
foo
as
f
;
pub
use
foo
::*;
}
use
bar
::
f
::
f
;
//~ ERROR module import `f` is private
fn
main
()
{}