summaryrefslogtreecommitdiff
path: root/std/mem.zc
diff options
context:
space:
mode:
Diffstat (limited to 'std/mem.zc')
-rw-r--r--std/mem.zc6
1 files changed, 6 insertions, 0 deletions
diff --git a/std/mem.zc b/std/mem.zc
index 5f4de36..6627d72 100644
--- a/std/mem.zc
+++ b/std/mem.zc
@@ -15,6 +15,12 @@ trait Drop {
fn drop(self);
}
+trait Copy {}
+
+trait Clone {
+ // fn clone(self) -> Self;
+}
+
struct Box<T> {
ptr: T*;
}