rust/tests/ui/floating_point_powi.fixed
2020-07-06 13:23:17 -03:00

12 lines
264 B
Rust

// run-rustfix
#![warn(clippy::suboptimal_flops, clippy::imprecise_flops)]
fn main() {
let one = 1;
let x = 3f32;
let _ = x * x;
let _ = x * x;
// Cases where the lint shouldn't be applied
let _ = x.powi(3);
let _ = x.powi(one + 1);
}