rust-clippy/tests/ui/unused_rounding.fixed

10 lines
153 B
Rust
Raw Normal View History

2022-05-21 21:02:00 +00:00
// run-rustfix
#![warn(clippy::unused_rounding)]
fn main() {
let _ = 1f32;
let _ = 1.0f64;
let _ = 1.00f32;
2022-05-22 21:21:04 +00:00
let _ = 2e-54f64.floor();
2022-05-21 21:02:00 +00:00
}