Sign in
fuchsia
/
third_party
/
rust
/
e3029abfaec4252ab0ae7010780be0094d8870e0
/
.
/
tests
/
ui
/
proc-macro
/
derive-expand-order.rs
blob: 75981f16a7fd860991c6949f9a24fb284cacbe84 [
file
] [
log
] [
blame
]
//@ 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
()
{}