about summary refs log tree commit diff
path: root/src/test/compile-fail/regions-in-structs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/regions-in-structs.rs')
-rw-r--r--src/test/compile-fail/regions-in-structs.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/compile-fail/regions-in-structs.rs b/src/test/compile-fail/regions-in-structs.rs
index f46f73bf26a..c231d3a913e 100644
--- a/src/test/compile-fail/regions-in-structs.rs
+++ b/src/test/compile-fail/regions-in-structs.rs
@@ -9,11 +9,11 @@
 // except according to those terms.
 
 struct yes1<'a> {
-  x: &'a uint,
+  x: &'a usize,
 }
 
 struct yes2<'a> {
-  x: &'a uint,
+  x: &'a usize,
 }
 
 struct StructDecl {