summaryrefslogtreecommitdiffstats
path: root/tests/ui/proc-macro/derive-two-attrs.rs
blob: 08225b8e3f22a56334cace0ae483322b308d2f9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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() {}