Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
proc-macro
/
derive-expand-order.rs
blob: 75981f16a7fd860991c6949f9a24fb284cacbe84 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}