diff options
Diffstat (limited to 'src/test/rustdoc/auxiliary/mod-stackoverflow.rs')
-rw-r--r-- | src/test/rustdoc/auxiliary/mod-stackoverflow.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/rustdoc/auxiliary/mod-stackoverflow.rs b/src/test/rustdoc/auxiliary/mod-stackoverflow.rs new file mode 100644 index 000000000..e0b90f180 --- /dev/null +++ b/src/test/rustdoc/auxiliary/mod-stackoverflow.rs @@ -0,0 +1,11 @@ +// compile-flags: -Cmetadata=aux + +pub mod tree { + pub use tree; +} + +pub mod tree2 { + pub mod prelude { + pub use tree2; + } +} |