blob: 08225b8e3f22a56334cace0ae483322b308d2f9f [file] [log] [blame]
// run-pass
#![allow(dead_code)]
// aux-build:derive-two-attrs.rs
extern crate derive_two_attrs as foo;
use foo::A;
#[derive(A)]
#[b]
#[b]
struct B;
fn main() {}