about summary refs log tree commit diff
path: root/src/test/run-pass/auto-instantiate.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/auto-instantiate.rs')
-rw-r--r--src/test/run-pass/auto-instantiate.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/auto-instantiate.rs b/src/test/run-pass/auto-instantiate.rs
index 522ead87c73..941a20f85e0 100644
--- a/src/test/run-pass/auto-instantiate.rs
+++ b/src/test/run-pass/auto-instantiate.rs
@@ -2,7 +2,7 @@
 
 
 // -*- rust -*-
-fn f<T: copy, U: copy>(x: T, y: U) -> {a: T, b: U} { return {a: x, b: y}; }
+fn f<T: Copy, U: Copy>(x: T, y: U) -> {a: T, b: U} { return {a: x, b: y}; }
 
 fn main() {
     log(debug, f({x: 3, y: 4, z: 5}, 4).a.x);