blob: 2e20a3de6bf4746e0e3d313c302d34fbb320cbb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// build-pass (FIXME(62277): could be check-pass?)
// aux-build:test-macros.rs
#[macro_use(Empty)]
extern crate test_macros;
use self::one::*;
use self::two::*;
mod empty_helper {}
mod one {
use empty_helper;
#[derive(Empty)]
#[empty_helper]
struct One;
}
mod two {
use empty_helper;
#[derive(Empty)]
#[empty_helper]
struct Two;
}
fn main() {}
|