mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			210 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			210 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| 
 | |
| pub fn main() {
 | |
|     let x = [1; 100];
 | |
|     let mut y = 0;
 | |
|     for (n,i) in x.iter().enumerate() {
 | |
|         if n < 10 {
 | |
|             continue;
 | |
|         }
 | |
|         y += *i;
 | |
|     }
 | |
|     assert_eq!(y, 90);
 | |
| }
 | 
