Sign in
fuchsia
/
third_party
/
rust
/
e3029abfaec4252ab0ae7010780be0094d8870e0
/
.
/
tests
/
ui
/
proc-macro
/
custom-attr-only-one-derive.rs
blob: 2616c122a6597a003966beac44cc4cfa3c8135cf [
file
] [
log
] [
blame
]
//@ run-pass
//@ aux-build:custom-attr-only-one-derive.rs
#[
macro_use
]
extern
crate custom_attr_only_one_derive
;
#[
derive
(
Bar
,
Foo
)]
#[
custom
=
"test"
]
pub
enum
A
{
B
,
C
,
}
fn
main
()
{}