diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-09-10 15:24:42 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-09-10 15:24:42 -0700 |
| commit | 5eccf849193f3de8da050eac960bc7f5df104c2f (patch) | |
| tree | 13ed05808078e256ec01b280f0a1ed7ece4ae891 /src | |
| parent | 1a33c25d6f60868525eb0e936a8fe33ddcc98ad7 (diff) | |
Capitalize Copy trait in test
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/run-pass/monomorphized-callees-with-ty-params-3314.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/monomorphized-callees-with-ty-params-3314.rs b/src/test/run-pass/monomorphized-callees-with-ty-params-3314.rs index 08b2afc773e..7cc1e1061d1 100644 --- a/src/test/run-pass/monomorphized-callees-with-ty-params-3314.rs +++ b/src/test/run-pass/monomorphized-callees-with-ty-params-3314.rs @@ -13,7 +13,7 @@ impl int: Serializable { struct F<A> { a: A } -impl<A: copy Serializable> F<A>: Serializable { +impl<A: Copy Serializable> F<A>: Serializable { fn serialize<S: Serializer>(s: S) { self.a.serialize(s); } |
