diff options
Diffstat (limited to 'tests/ui/proc-macro/derive-expand-order.stdout')
-rw-r--r-- | tests/ui/proc-macro/derive-expand-order.stdout | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/ui/proc-macro/derive-expand-order.stdout b/tests/ui/proc-macro/derive-expand-order.stdout new file mode 100644 index 000000000..dffbbf149 --- /dev/null +++ b/tests/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 {} |