summaryrefslogtreecommitdiffstats
path: root/tests/ui/proc-macro/derive-expand-order.stdout
blob: dffbbf1494b9ae9d5ed9c1a04209e1f3369e0d74 (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 {}