rust/tests/ui/floating_point_exp.rs

20 lines
481 B
Rust
Raw Normal View History

2020-02-22 22:32:13 -06:00
// run-rustfix
#![warn(clippy::imprecise_flops)]
2019-12-20 19:57:47 -06:00
fn main() {
let x = 2f32;
let _ = x.exp() - 1.0;
let _ = x.exp() - 1.0 + 2.0;
let _ = (x as f32).exp() - 1.0 + 2.0;
2019-12-20 19:57:47 -06:00
// Cases where the lint shouldn't be applied
let _ = x.exp() - 2.0;
let _ = x.exp() - 1.0 * 2.0;
let x = 2f64;
let _ = x.exp() - 1.0;
let _ = x.exp() - 1.0 + 2.0;
// Cases where the lint shouldn't be applied
let _ = x.exp() - 2.0;
let _ = x.exp() - 1.0 * 2.0;
}