summaryrefslogtreecommitdiffstats
path: root/tests/ui/proc-macro/derive-in-mod.rs
blob: 96e9d93fe128561bf6f8069a0ad1b2d9208a2b2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// check-pass
// aux-build:test-macros.rs

extern crate test_macros;

mod inner {
    use test_macros::Empty;

    #[derive(Empty)]
    struct S;
}

fn main() {}