mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			362 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			362 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| #![allow(unused_macros)]
 | |
| 
 | |
| mod mod_dir_simple {
 | |
|     #[path = "test.rs"]
 | |
|     pub mod syrup;
 | |
| }
 | |
| 
 | |
| pub fn main() {
 | |
|     assert_eq!(mod_dir_simple::syrup::foo(), 10);
 | |
| 
 | |
|     #[path = "auxiliary"]
 | |
|     mod foo {
 | |
|         mod two_macros_2;
 | |
|     }
 | |
| 
 | |
|     #[path = "auxiliary"]
 | |
|     mod bar {
 | |
|         macro_rules! m { () => { mod two_macros_2; } }
 | |
|         m!();
 | |
|     }
 | |
| }
 | 
