summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/derive-expand-order.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/proc-macro/derive-expand-order.rs')
-rw-r--r--src/test/ui/proc-macro/derive-expand-order.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/proc-macro/derive-expand-order.rs b/src/test/ui/proc-macro/derive-expand-order.rs
deleted file mode 100644
index 0cf1ceb91..000000000
--- a/src/test/ui/proc-macro/derive-expand-order.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-// run-pass
-// aux-build:multiple-derives.rs
-
-extern crate multiple_derives;
-
-use multiple_derives::*;
-
-#[derive(First)]
-#[derive(Second)]
-#[derive(Third, Fourth)]
-#[derive(Fifth)]
-pub struct Foo {}
-
-fn main() {}