Sign in
fuchsia
/
third_party
/
rust
/
2a3e17c6d5c49eeb770ade2fa660f98e9cce0ce0
/
.
/
tests
/
ui
/
imports
/
issue-24883.rs
blob: de1000c1badc49f0c167bf9521786589ecb74188 [
file
] [
log
] [
blame
]
//@ 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
);
}