]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/default_numeric_fallback_f64.fixed
Fix `unnecessary_cast` suggestion when taking a reference
[rust.git] / tests / ui / default_numeric_fallback_f64.fixed
index a28bff76755b62f982bf364d3e8f3fbfaeb01db7..a370ccc76962e9802fed7b14ecc2be8abba88aaa 100644 (file)
@@ -33,6 +33,7 @@ mod basic_expr {
         let x: [f64; 3] = [1., 2., 3.];
         let x: (f64, f64) = if true { (1., 2.) } else { (3., 4.) };
         let x: _ = 1.;
+        const X: f32 = 1.;
     }
 }
 
@@ -59,6 +60,14 @@ mod nested_local {
             // Should NOT lint this because this literal is bound to `_` of outer `Local`.
             2.
         };
+
+        const X: f32 = {
+            // Should lint this because this literal is not bound to any types.
+            let y = 1.0_f64;
+
+            // Should NOT lint this because this literal is bound to `_` of outer `Local`.
+            1.
+        };
     }
 }