about summary refs log tree commit diff
path: root/src/test/ui/integral-variable-unification-error.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/integral-variable-unification-error.stderr')
-rw-r--r--src/test/ui/integral-variable-unification-error.stderr14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/integral-variable-unification-error.stderr b/src/test/ui/integral-variable-unification-error.stderr
deleted file mode 100644
index f77c265a2ad..00000000000
--- a/src/test/ui/integral-variable-unification-error.stderr
+++ /dev/null
@@ -1,14 +0,0 @@
-error[E0308]: mismatched types
-  --> $DIR/integral-variable-unification-error.rs:5:9
-   |
-LL |     let mut x
-   |         ----- expected due to the type of this binding
-LL |         =
-LL |         2;
-   |         - expected due to this value
-LL |     x = 5.0;
-   |         ^^^ expected integer, found floating-point number
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0308`.