1
Fork 0

remove vecs_implicitly_copyable from libstd/libcore

This commit is contained in:
Daniel Micay 2013-05-08 22:44:43 -04:00
parent d82d9874a6
commit 2bc12635a2
14 changed files with 105 additions and 106 deletions

View file

@ -499,7 +499,7 @@ mod tests {
let arc_v = p.recv();
let v = *arc::get::<~[int]>(&arc_v);
let v = copy *arc::get::<~[int]>(&arc_v);
assert!(v[3] == 4);
};