2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-01-10 12:18:43 +00:00
rust-clippy/tests/ui/floating_point_hypot.fixed
2020-07-06 13:45:43 -03:00

14 lines
375 B
Rust

// run-rustfix
#![warn(clippy::imprecise_flops)]
fn main() {
let x = 3f32;
let y = 4f32;
let _ = x.hypot(y);
let _ = (x + 1f32).hypot(y);
let _ = x.hypot(y);
// Cases where the lint shouldn't be applied
// TODO: linting this adds some complexity, but could be done
let _ = x.mul_add(x, y * y).sqrt();
let _ = (x * 4f32 + y * y).sqrt();
}