Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
imports
/
issue-24883.rs
blob: de1000c1badc49f0c167bf9521786589ecb74188 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
mod
a
{
pub
mod
b
{
pub
struct
Foo
;
}
pub
mod
c
{
use
super
::
b
;
pub
struct
Bar
(
pub
b
::
Foo
);
}
pub
use
self
::
c
::*;
}
fn
main
()
{
let
_
=
a
::
c
::
Bar
(
a
::
b
::
Foo
);
let
_
=
a
::
Bar
(
a
::
b
::
Foo
);
}