// build-pass (FIXME(62277): could be check-pass?)// aux-build:test-macros.rs#[macro_use(Empty)]externcratetest_macros;useself::one::*;useself::two::*;modempty_helper{}modone{useempty_helper;#[derive(Empty)]#[empty_helper]structOne;}modtwo{useempty_helper;#[derive(Empty)]#[empty_helper]structTwo;}fnmain(){}