]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/derive-expand-order.stdout
Auto merge of #106711 - albertlarsan68:use-ci-llvm-when-lld, r=jyn514
[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 {}