2023-07-27 10:29:53 +02:00
|
|
|
// check-pass
|
2019-05-22 01:09:58 +03:00
|
|
|
// 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() {}
|