rust/tests/ui/proc-macro/derive-expand-order.stdout

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
298 B
Plaintext
Raw Normal View History

2021-12-01 19:45:14 +00:00
Derive First: #[derive(Second)] #[derive(Third, Fourth)] #[derive(Fifth)] pub struct Foo {}
Derive Second: #[derive(Third, Fourth)] #[derive(Fifth)] pub struct Foo {}
Derive Third: #[derive(Fifth)] pub struct Foo {}
Derive Fourth: #[derive(Fifth)] pub struct Foo {}
Derive Fifth: pub struct Foo {}