mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-17 14:38:46 +00:00
10 lines
176 B
Rust
10 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();
|
||
|
}
|