summaryrefslogtreecommitdiff
path: root/std/mem.zc
diff options
context:
space:
mode:
Diffstat (limited to 'std/mem.zc')
-rw-r--r--std/mem.zc2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/mem.zc b/std/mem.zc
index 6627d72..ed69c9b 100644
--- a/std/mem.zc
+++ b/std/mem.zc
@@ -18,7 +18,7 @@ trait Drop {
trait Copy {}
trait Clone {
- // fn clone(self) -> Self;
+ fn clone(self) -> Self;
}
struct Box<T> {