mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			139 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			139 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-pass
 | |
| 
 | |
| pub fn main() {
 | |
|     let x = vec![10, 20, 30];
 | |
|     let mut sum = 0;
 | |
|     for x in &x { sum += *x; }
 | |
|     assert_eq!(sum, 60);
 | |
| }
 | 
