mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 04:24:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			157 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			157 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ needs-asm-support
 | |
| //@ build-pass (FIXME(62277): could be check-pass?)
 | |
| #![allow(unused)]
 | |
| 
 | |
| #[macro_use]
 | |
| mod foo;
 | |
| 
 | |
| m!();
 | |
| fn f() {
 | |
|     n!();
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
