mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	* The WASI targets deal with the `main` symbol a bit differently than native so some `codegen` and `assembly` tests have been ignored. * All `ignore-emscripten` directives have been updated to `ignore-wasm32` to be more clear that all wasm targets are ignored and it's not just Emscripten. * Most `ignore-wasm32-bare` directives are now gone. * Some ignore directives for wasm were switched to `needs-unwind` instead. * Many `ignore-wasm32*` directives are removed as the tests work with WASI as opposed to `wasm32-unknown-unknown`.
		
			
				
	
	
		
			20 lines
		
	
	
		
			459 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			459 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ run-pass
 | 
						|
 | 
						|
#[inline(never)]
 | 
						|
fn foo(a: f32, b: f32) -> f32 {
 | 
						|
    a % b
 | 
						|
}
 | 
						|
 | 
						|
#[inline(never)]
 | 
						|
fn bar(a: f32, b: f32) -> f32 {
 | 
						|
    ((a as f64) % (b as f64)) as f32
 | 
						|
}
 | 
						|
 | 
						|
fn main() {
 | 
						|
    let unknown_float = std::env::args().len();
 | 
						|
    println!("{}", foo(4.0, unknown_float as f32));
 | 
						|
    println!("{}", foo(5.0, (unknown_float as f32) + 1.0));
 | 
						|
    println!("{}", bar(6.0, (unknown_float as f32) + 2.0));
 | 
						|
    println!("{}", bar(7.0, (unknown_float as f32) + 3.0));
 | 
						|
}
 |