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