mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-18 18:58:45 +00:00
20 lines
440 B
Rust
20 lines
440 B
Rust
|
// run-rustfix
|
||
|
#![warn(clippy::suboptimal_flops)]
|
||
|
|
||
|
fn main() {
|
||
|
let one = 1;
|
||
|
let x = 3f32;
|
||
|
let _ = x.powi(2);
|
||
|
let _ = x.powi(1 + 1);
|
||
|
|
||
|
let y = 4f32;
|
||
|
let _ = x.powi(2) + y;
|
||
|
let _ = x + y.powi(2);
|
||
|
let _ = (x.powi(2) + y).sqrt();
|
||
|
let _ = (x + y.powi(2)).sqrt();
|
||
|
// Cases where the lint shouldn't be applied
|
||
|
let _ = x.powi(3);
|
||
|
let _ = x.powi(one + 1);
|
||
|
let _ = (x.powi(2) + y.powi(2)).sqrt();
|
||
|
}
|