Sign in
android
/
toolchain
/
rustc
/
635618df8991b8a005e435895ea0b1eee7e3faf0
/
.
/
tests
/
ui
/
imports
/
import2.rs
blob: 036d6bc07e281f2f258f36d6611d48be7c31c727 [
file
] [
log
] [
blame
]
use
baz
::
zed
::
bar
;
//~ ERROR unresolved import `baz::zed` [E0432]
//~^ could not find `zed` in `baz`
mod
baz
{}
mod
zed
{
pub
fn
bar
()
{
println
!(
"bar3"
);
}
}
fn
main
()
{
bar
();
}