mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			143 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			143 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-pass
 | |
| #![allow(non_camel_case_types)]
 | |
| 
 | |
| 
 | |
| enum test { thing = -5 >> 1_usize }
 | |
| pub fn main() {
 | |
|     assert_eq!(test::thing as isize, -3);
 | |
| }
 | 
