mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			237 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			237 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// Out-of-line module is found on the filesystem if passed through a proc macro (issue #58818).
 | 
						|
 | 
						|
// check-pass
 | 
						|
// aux-build:test-macros.rs
 | 
						|
 | 
						|
#[macro_use]
 | 
						|
extern crate test_macros;
 | 
						|
 | 
						|
mod outer {
 | 
						|
    identity! { mod inner; }
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |