about summary refs log tree commit diff
path: root/tests/ui/default_numeric_fallback_f64.rs
diff options
context:
space:
mode:
authorPhilipp Krones <hello@philkrones.com>2022-10-20 16:39:27 +0200
committerPhilipp Krones <hello@philkrones.com>2022-10-20 16:39:27 +0200
commitfb8ecb983258aafdf0e8a56c565a615e1e1dafb4 (patch)
treeeb0955692c1bd56ac0ffefdbbcdb8bcc2653f104 /tests/ui/default_numeric_fallback_f64.rs
parent4f50e6f41ec8b55a6dc52066dc15fa5d17b8e39b (diff)
parent1afc7e227de5453ba98212f82c892522068ea830 (diff)
downloadrust-fb8ecb983258aafdf0e8a56c565a615e1e1dafb4.tar.gz
rust-fb8ecb983258aafdf0e8a56c565a615e1e1dafb4.zip
Merge remote-tracking branch 'upstream/master' into rustup
Diffstat (limited to 'tests/ui/default_numeric_fallback_f64.rs')
-rw-r--r--tests/ui/default_numeric_fallback_f64.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/default_numeric_fallback_f64.rs b/tests/ui/default_numeric_fallback_f64.rs
index b48435cc7b2..2476fe95141 100644
--- a/tests/ui/default_numeric_fallback_f64.rs
+++ b/tests/ui/default_numeric_fallback_f64.rs
@@ -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.;
+
+            // Should NOT lint this because this literal is bound to `_` of outer `Local`.
+            1.
+        };
     }
 }