summaryrefslogtreecommitdiffstats
path: root/src/test/ui/span/auxiliary/transitive_dep_three.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/span/auxiliary/transitive_dep_three.rs')
-rw-r--r--src/test/ui/span/auxiliary/transitive_dep_three.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/span/auxiliary/transitive_dep_three.rs b/src/test/ui/span/auxiliary/transitive_dep_three.rs
new file mode 100644
index 000000000..99b51625a
--- /dev/null
+++ b/src/test/ui/span/auxiliary/transitive_dep_three.rs
@@ -0,0 +1,9 @@
+#[macro_export]
+macro_rules! define_parse_error {
+ () => {
+ #[macro_export]
+ macro_rules! parse_error {
+ () => { parse error }
+ }
+ }
+}