mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			170 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			170 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-pass
 | |
| //@ aux-build:two_macros.rs
 | |
| 
 | |
| #[macro_use(macro_one)]
 | |
| #[macro_use(macro_two)]
 | |
| extern crate two_macros;
 | |
| 
 | |
| pub fn main() {
 | |
|     macro_one!();
 | |
|     macro_two!();
 | |
| }
 | 
