Sign in
◑
Theme
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/main
/
.
/
tests
/
rustdoc-ui
/
recursion
/
recursion2.rs
blob: c477510b89e118c100c3526983b7001a4bb99ced [
file
] [
edit
]
//@ check-pass
#![
crate_type
=
"lib"
]
mod
m
{
pub
use
self
::
a
::
Foo
;
mod
a
{
pub
struct
Foo
;
}
mod
b
{
pub
use
super
::*;
}
}