mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			171 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			171 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| 
 | |
| macro_rules! m {
 | |
|     () => {
 | |
|         /// A
 | |
|         //~^ WARNING
 | |
|         #[path = "auxiliary/module_macro_doc.rs"]
 | |
|         pub mod mymodule;
 | |
|     }
 | |
| }
 | |
| 
 | |
| m!();
 | 
