about summary refs log tree commit diff
path: root/src/test/run-pass/box-unbox.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/box-unbox.rs')
-rw-r--r--src/test/run-pass/box-unbox.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/box-unbox.rs b/src/test/run-pass/box-unbox.rs
index 35585014713..ad32ffc75c9 100644
--- a/src/test/run-pass/box-unbox.rs
+++ b/src/test/run-pass/box-unbox.rs
@@ -10,7 +10,7 @@
 
 
 
-struct Box<T: Copy> {c: @T}
+struct Box<T> {c: @T}
 
 fn unbox<T: Copy>(b: Box<T>) -> T { return *b.c; }