about summary refs log tree commit diff
path: root/tests/ui/lint/lint-pub-unreachable-for-nested-glob.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/lint/lint-pub-unreachable-for-nested-glob.rs')
-rw-r--r--tests/ui/lint/lint-pub-unreachable-for-nested-glob.rs28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/ui/lint/lint-pub-unreachable-for-nested-glob.rs b/tests/ui/lint/lint-pub-unreachable-for-nested-glob.rs
new file mode 100644
index 00000000000..2df6d08e7ae
--- /dev/null
+++ b/tests/ui/lint/lint-pub-unreachable-for-nested-glob.rs
@@ -0,0 +1,28 @@
+// check-pass
+
+#![deny(unreachable_pub)]
+
+pub use self::m1::*;
+
+mod m1 {
+    pub use self::m2::*;
+
+    mod m2 {
+        pub struct Item1;
+        pub struct Item2;
+    }
+}
+
+
+pub use self::o1::{ Item42, Item24 };
+
+mod o1 {
+    pub use self::o2::{ Item42, Item24 };
+
+    mod o2 {
+        pub struct Item42;
+        pub struct Item24;
+    }
+}
+
+fn main() {}