summaryrefslogtreecommitdiffstats
path: root/tests/ui/proc-macro/issue-53481.rs
blob: 922e60a4c4fa1f86ed874944d2a122f25f02ea12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// check-pass
// aux-build:test-macros.rs

#[macro_use]
extern crate test_macros;

mod m1 {
    use m2::Empty;

    #[derive(Empty)]
    struct A {}
}

mod m2 {
    pub type Empty = u8;

    #[derive(Empty)]
    #[empty_helper]
    struct B {}
}

fn main() {}