about summary refs log tree commit diff
path: root/tests/rustdoc/auxiliary/mod-stackoverflow.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc/auxiliary/mod-stackoverflow.rs')
-rw-r--r--tests/rustdoc/auxiliary/mod-stackoverflow.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/rustdoc/auxiliary/mod-stackoverflow.rs b/tests/rustdoc/auxiliary/mod-stackoverflow.rs
new file mode 100644
index 00000000000..e0b90f180ee
--- /dev/null
+++ b/tests/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;
+    }
+}