about summary refs log tree commit diff
path: root/src/test/ui/integral-variable-unification-error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/integral-variable-unification-error.rs')
-rw-r--r--src/test/ui/integral-variable-unification-error.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/test/ui/integral-variable-unification-error.rs b/src/test/ui/integral-variable-unification-error.rs
deleted file mode 100644
index 8d1621321e8..00000000000
--- a/src/test/ui/integral-variable-unification-error.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-fn main() {
-    let mut x //~ NOTE expected due to the type of this binding
-        =
-        2; //~ NOTE expected due to this value
-    x = 5.0;
-    //~^ ERROR mismatched types
-    //~| NOTE expected integer, found floating-point number
-}