2019-07-27 00:54:25 +03:00
|
|
|
//@ run-pass
|
2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: custom-attr-only-one-derive.rs
|
2018-07-10 14:04:41 -07:00
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate custom_attr_only_one_derive;
|
|
|
|
|
|
|
|
|
|
#[derive(Bar, Foo)]
|
|
|
|
|
#[custom = "test"]
|
|
|
|
|
pub enum A {
|
|
|
|
|
B,
|
|
|
|
|
C,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|