mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 12:36:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			200 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			200 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| #![allow(dead_code)]
 | |
| 
 | |
| enum BogusOption<T> {
 | |
|     None,
 | |
|     Some(T),
 | |
| }
 | |
| 
 | |
| type Iterator = isize;
 | |
| 
 | |
| pub fn main() {
 | |
|     let x = [ 3, 3, 3 ];
 | |
|     for i in &x {
 | |
|         assert_eq!(*i, 3);
 | |
|     }
 | |
| }
 | 
