about summary refs log tree commit diff
path: root/src/test/compile-fail/integral-variable-unification-error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/integral-variable-unification-error.rs')
-rw-r--r--src/test/compile-fail/integral-variable-unification-error.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/compile-fail/integral-variable-unification-error.rs b/src/test/compile-fail/integral-variable-unification-error.rs
index 99f2d251668..9dd3772c10c 100644
--- a/src/test/compile-fail/integral-variable-unification-error.rs
+++ b/src/test/compile-fail/integral-variable-unification-error.rs
@@ -12,7 +12,7 @@ fn main() {
     let mut x = 2;
     x = 5.0;
     //~^ ERROR mismatched types
-    //~| expected type `_`
-    //~| found type `_`
+    //~| expected type `{numeric}`
+    //~| found type `{numeric}`
     //~| expected integral variable, found floating-point variable
 }