summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/float-literal-inference-restrictions.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/mismatched_types/float-literal-inference-restrictions.rs')
-rw-r--r--src/test/ui/mismatched_types/float-literal-inference-restrictions.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/test/ui/mismatched_types/float-literal-inference-restrictions.rs b/src/test/ui/mismatched_types/float-literal-inference-restrictions.rs
deleted file mode 100644
index 34079b61e..000000000
--- a/src/test/ui/mismatched_types/float-literal-inference-restrictions.rs
+++ /dev/null
@@ -1,4 +0,0 @@
-fn main() {
- let x: f32 = 1; //~ ERROR mismatched types
- let y: f32 = 1f64; //~ ERROR mismatched types
-}