]> git.lizzy.rs Git - rust.git/blobdiff - src/test/compile-fail/bad-match.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / bad-match.rs
index 728b577df1dd4a3e2a3ecb6ee7c85c055220ca8d..33043ff5524a45753ad6826c9661f4025ec4ef5d 100644 (file)
@@ -11,7 +11,7 @@
 // error-pattern: expected
 
 fn main() {
-  let int x = 5;
+  let isize x = 5;
   match x;
 }