about summary refs log tree commit diff
path: root/tests/run-make/rustdoc-map-file/foo.rs
blob: f98543f9b052537b74d0a90216806458a747f112 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 {
    () => {};
}