mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			145 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			145 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-pass
 | |
| 
 | |
| fn f() -> isize {
 | |
|     mod m {
 | |
|         pub fn g() -> isize { 720 }
 | |
|     }
 | |
| 
 | |
|     m::g()
 | |
| }
 | |
| 
 | |
| pub fn main() {
 | |
|     assert_eq!(f(), 720);
 | |
| }
 | 
