Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
proc-macro
/
custom-attr-only-one-derive.rs
blob: f0e82f367579bb42d6cffb315fb71c29257c5320 [
file
] [
log
] [
blame
]
//@ run-pass
//@ proc-macro: 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
()
{}