mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			143 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			143 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
#![allow(dead_code)]
 | 
						|
 | 
						|
#[deny(overflowing_literals)]
 | 
						|
#[repr(i64)]
 | 
						|
enum Foo {
 | 
						|
    X = 0x7fffffffffffffff,
 | 
						|
    Y, //~ ERROR E0370
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |