Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
shadowed-use-visibility.rs
blob: 66181267f98a898293bc2e9859e1fe68877c86c5 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
unused_imports
)]
mod
foo
{
pub
fn
f
()
{}
pub
use
self
::
f
as
bar
;
use
foo
as
bar
;
}
fn
main
()
{
foo
::
bar
();
}