Sign in
fuchsia
/
third_party
/
rust
/
2a3e17c6d5c49eeb770ade2fa660f98e9cce0ce0
/
.
/
tests
/
rustdoc
/
recursion1.rs
blob: edf7e440fe7c49e5ae7f0df55807fbc3bf839d95 [
file
] [
log
] [
blame
]
#![
crate_type
=
"lib"
]
mod
m
{
pub
use
self
::
a
::
Foo
;
mod
a
{
pub
struct
Foo
;
}
mod
b
{
pub
use
super
::*;
}
}