mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			173 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			173 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-pass
 | |
| 
 | |
| // Testing that a plain .rs file can load modules from other source files
 | |
| 
 | |
| #[path = "mod_file_aux.rs"]
 | |
| mod m;
 | |
| 
 | |
| pub fn main() {
 | |
|     assert_eq!(m::foo(), 10);
 | |
| }
 | 
