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