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