]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/derive-expand-order.stdout
Rollup merge of #104158 - Ayush1325:executable, r=Mark-Simulacrum
[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 {}