summaryrefslogtreecommitdiffstats
path: root/src/test/ui/hygiene/auxiliary/pub_hygiene.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/hygiene/auxiliary/pub_hygiene.rs')
-rw-r--r--src/test/ui/hygiene/auxiliary/pub_hygiene.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test/ui/hygiene/auxiliary/pub_hygiene.rs b/src/test/ui/hygiene/auxiliary/pub_hygiene.rs
new file mode 100644
index 000000000..47e76a629
--- /dev/null
+++ b/src/test/ui/hygiene/auxiliary/pub_hygiene.rs
@@ -0,0 +1,7 @@
+#![feature(decl_macro)]
+
+macro x() {
+ pub struct MyStruct;
+}
+
+x!();