summary refs log tree commit diff
path: root/src/test/ui/proc-macro/derive-expand-order.stdout
blob: 3ac1adf92c24f7dffe9447512f8cccdd161bce1f (plain)
1
2
3
4
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 { }