]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/derive-expand-order.stdout
Auto merge of #106503 - cjgillot:remap-nofilter, r=oli-obk
[rust.git] / tests / ui / proc-macro / derive-expand-order.stdout
1 Derive First: #[derive(Second)] #[derive(Third, Fourth)] #[derive(Fifth)] pub struct Foo {}
2 Derive Second: #[derive(Third, Fourth)] #[derive(Fifth)] pub struct Foo {}
3 Derive Third: #[derive(Fifth)] pub struct Foo {}
4 Derive Fourth: #[derive(Fifth)] pub struct Foo {}
5 Derive Fifth: pub struct Foo {}