]> git.lizzy.rs Git - rust.git/blobdiff - src/test/compile-fail/type-recursive.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / type-recursive.rs
index a2b4e8d9782fd7a84ebf6754daece3991e0f6201..9dcb60628a9079fe2a443ffe391d8d4fa05c0394 100644 (file)
@@ -10,7 +10,7 @@
 
 // error-pattern:this type cannot be instantiated
 struct t1 {
-    foo: int,
+    foo: isize,
     foolish: t1
 }