about summary refs log tree commit diff
path: root/tests/ui/resolve/issue-21221-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/resolve/issue-21221-2.rs')
-rw-r--r--tests/ui/resolve/issue-21221-2.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/ui/resolve/issue-21221-2.rs b/tests/ui/resolve/issue-21221-2.rs
new file mode 100644
index 00000000000..dc13e46cb48
--- /dev/null
+++ b/tests/ui/resolve/issue-21221-2.rs
@@ -0,0 +1,21 @@
+pub mod foo {
+    pub mod bar {
+        // note: trait T is not public, but being in the current
+        // crate, it's fine to show it, since the programmer can
+        // decide to make it public based on the suggestion ...
+        pub trait T {}
+    }
+    // imports should be ignored:
+    use self::bar::T;
+}
+
+pub mod baz {
+    pub use foo;
+    pub use std::ops::{Mul as T};
+}
+
+struct Foo;
+impl T for Foo { }
+//~^ ERROR cannot find trait `T`
+
+fn main() {}