mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
9 lines
176 B
Rust
9 lines
176 B
Rust
// run-rustfix
|
|
#![warn(clippy::unused_rounding)]
|
|
|
|
fn main() {
|
|
let _ = 1f32.ceil();
|
|
let _ = 1.0f64.floor();
|
|
let _ = 1.00f32.round();
|
|
let _ = 2e-54f64.floor();
|
|
}
|