summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/privacy2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/privacy/privacy2.rs')
-rw-r--r--tests/ui/privacy/privacy2.rs27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/ui/privacy/privacy2.rs b/tests/ui/privacy/privacy2.rs
new file mode 100644
index 000000000..c8fa436bd
--- /dev/null
+++ b/tests/ui/privacy/privacy2.rs
@@ -0,0 +1,27 @@
+#![feature(start, no_core)]
+#![no_core] // makes debugging this test *a lot* easier (during resolve)
+
+// Test to make sure that globs don't leak in regular `use` statements.
+
+mod bar {
+ pub use self::glob::*;
+
+ pub mod glob {
+ use foo;
+ }
+}
+
+pub fn foo() {}
+
+fn test1() {
+ use bar::foo;
+ //~^ ERROR unresolved import `bar::foo` [E0432]
+ //~| no `foo` in `bar`
+}
+
+fn test2() {
+ use bar::glob::foo;
+ //~^ ERROR `foo` is private
+}
+
+#[start] fn main(_: isize, _: *const *const u8) -> isize { 3 }