mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			186 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			186 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| 
 | |
| #![allow(non_camel_case_types)]
 | |
| #![allow(non_upper_case_globals)]
 | |
| 
 | |
| const foo: isize = 4 >> 1;
 | |
| enum bs { thing = foo }
 | |
| pub fn main() { assert_eq!(bs::thing as isize, foo); }
 | 
