mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			351 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			351 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ check-pass
 | 
						|
//@ proc-macro: 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() {}
 |