]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/derive-expand-order.rs
Rollup merge of #106591 - Ezrashaw:attempted-integer-identifer, r=Estebank
[rust.git] / tests / 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() {}