mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			131 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			131 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-pass
 | |
| 
 | |
| fn foo() -> i32 {
 | |
|     const {
 | |
|         let x = 5 + 10;
 | |
|         x / 3
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     assert_eq!(5, foo());
 | |
| }
 | 
