]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/derive-expand-order.stdout
Rollup merge of #86478 - ehuss:future-incompat-test, r=oli-obk
[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 { }