]> git.lizzy.rs Git - rust.git/blobdiff - src/test/compile-fail/no_send-struct.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / no_send-struct.rs
index c2d6f04c7d49c20b449f0f6697da70749b0bea38..bef705237872625bf3ab48c52963b119df09d1ed 100644 (file)
@@ -11,7 +11,7 @@
 use std::marker;
 
 struct Foo {
-    a: int,
+    a: isize,
     ns: marker::NoSend
 }