mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			254 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			254 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-fail
 | |
| // error-pattern:attempt to negate with overflow
 | |
| // ignore-emscripten no processes
 | |
| // compile-flags: -C debug-assertions
 | |
| 
 | |
| #![allow(arithmetic_overflow)]
 | |
| 
 | |
| use std::num::NonZeroI8;
 | |
| 
 | |
| fn main() {
 | |
|     let _x = -NonZeroI8::new(i8::MIN).unwrap();
 | |
| }
 | 
