2020-05-25 11:54:39 -05:00
|
|
|
// run-rustfix
|
2020-06-17 11:43:11 -05:00
|
|
|
#![warn(clippy::imprecise_flops)]
|
2020-05-25 11:54:39 -05:00
|
|
|
|
|
|
|
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
|
2020-06-17 11:43:11 -05:00
|
|
|
// TODO: linting this adds some complexity, but could be done
|
2020-05-25 11:54:39 -05:00
|
|
|
let _ = x.mul_add(x, y * y).sqrt();
|
2020-06-17 11:43:11 -05:00
|
|
|
let _ = (x * 4f32 + y * y).sqrt();
|
2020-05-25 11:54:39 -05:00
|
|
|
}
|