summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/derive-expand-order.stdout
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/proc-macro/derive-expand-order.stdout')
-rw-r--r--src/test/ui/proc-macro/derive-expand-order.stdout5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/ui/proc-macro/derive-expand-order.stdout b/src/test/ui/proc-macro/derive-expand-order.stdout
new file mode 100644
index 000000000..dffbbf149
--- /dev/null
+++ b/src/test/ui/proc-macro/derive-expand-order.stdout
@@ -0,0 +1,5 @@
+Derive First: #[derive(Second)] #[derive(Third, Fourth)] #[derive(Fifth)] pub struct Foo {}
+Derive Second: #[derive(Third, Fourth)] #[derive(Fifth)] pub struct Foo {}
+Derive Third: #[derive(Fifth)] pub struct Foo {}
+Derive Fourth: #[derive(Fifth)] pub struct Foo {}
+Derive Fifth: pub struct Foo {}