summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/derive-macro-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/resolve/derive-macro-1.rs')
-rw-r--r--tests/ui/resolve/derive-macro-1.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/resolve/derive-macro-1.rs b/tests/ui/resolve/derive-macro-1.rs
new file mode 100644
index 000000000..90cbd903a
--- /dev/null
+++ b/tests/ui/resolve/derive-macro-1.rs
@@ -0,0 +1,18 @@
+// check-pass
+// aux-build:issue-112831-aux.rs
+
+mod z {
+ pub trait Zeroable {}
+}
+
+use z::*;
+
+mod pod {
+ use super::*;
+ pub trait Pod: Zeroable {}
+}
+
+extern crate issue_112831_aux;
+use issue_112831_aux::Zeroable;
+
+fn main() {}