about summary refs log tree commit diff
path: root/src/test/compile-fail/tuple-struct-nonexhaustive.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/tuple-struct-nonexhaustive.rs')
-rw-r--r--src/test/compile-fail/tuple-struct-nonexhaustive.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/tuple-struct-nonexhaustive.rs b/src/test/compile-fail/tuple-struct-nonexhaustive.rs
index 1f14fbb27ad..e4fda6dd534 100644
--- a/src/test/compile-fail/tuple-struct-nonexhaustive.rs
+++ b/src/test/compile-fail/tuple-struct-nonexhaustive.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-struct Foo(int, int);
+struct Foo(isize, isize);
 
 fn main() {
     let x = Foo(1, 2);