about summary refs log tree commit diff
path: root/tests/ui/proc-macro/derive-expand-order.rs
blob: 076590bdb4cdae58ba8e056a0a74f459ec6f728f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//@ run-pass
//@ proc-macro: multiple-derives.rs

extern crate multiple_derives;

use multiple_derives::*;

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

fn main() {}