]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/derive-expand-order.rs
Merge commit '2b2190cb5667cdd276a24ef8b9f3692209c54a89' into clippyup
[rust.git] / src / test / ui / proc-macro / derive-expand-order.rs
1 // run-pass
2 // aux-build:multiple-derives.rs
3
4 extern crate multiple_derives;
5
6 use multiple_derives::*;
7
8 #[derive(First)]
9 #[derive(Second)]
10 #[derive(Third, Fourth)]
11 #[derive(Fifth)]
12 pub struct Foo {}
13
14 fn main() {}