mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-29 20:15:27 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			229 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			229 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| // compile-flags:-Zmir-opt-level=0
 | |
| 
 | |
| #![feature(test, stmt_expr_attributes)]
 | |
| #![deny(overflowing_literals)]
 | |
| 
 | |
| #[path = "saturating-float-casts-impl.rs"]
 | |
| mod implementation;
 | |
| 
 | |
| pub fn main() {
 | |
|     implementation::run();
 | |
| }
 | 
