]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/unused_rounding.rs
Move MSRV tests into the lint specific test files
[rust.git] / tests / ui / unused_rounding.rs
index 90af8f19dd9bd66c61a8ee105124802d3c3520b9..8d007bc4a1dc8f3333ab72ac2f230fa56808b011 100644 (file)
@@ -5,4 +5,5 @@ fn main() {
     let _ = 1f32.ceil();
     let _ = 1.0f64.floor();
     let _ = 1.00f32.round();
+    let _ = 2e-54f64.floor();
 }