Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
run-make
/
rustdoc-map-file
/
foo.rs
blob: f98543f9b052537b74d0a90216806458a747f112 [
file
] [
log
] [
blame
]
pub
use
hidden
::
Bar
;
pub
use
private
::
Quz
;
mod
private
{
pub
struct
Quz
;
}
#[
doc
(
hidden
)]
pub
mod
hidden
{
pub
struct
Bar
;
}
#[
macro_export
]
macro_rules
!
foo
{
()
=>
{};
}