]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/derive-expand-order.stdout
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[rust.git] / src / test / 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 {}