rust/tests/rustdoc/auxiliary/mod-stackoverflow.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
140 B
Rust
Raw Normal View History

2018-04-28 14:56:38 -05:00
//@ compile-flags: -Cmetadata=aux
pub mod tree {
pub use tree;
}
pub mod tree2 {
pub mod prelude {
pub use tree2;
}
}