summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/derive-expand-order.rs
blob: 0cf1ceb91dea16260ccfce780ea18b9000b8aae3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// run-pass
// aux-build:multiple-derives.rs

extern crate multiple_derives;

use multiple_derives::*;

#[derive(First)]
#[derive(Second)]
#[derive(Third, Fourth)]
#[derive(Fifth)]
pub struct Foo {}

fn main() {}