summaryrefslogtreecommitdiff
path: root/std/mem.zc
diff options
context:
space:
mode:
authorZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-01-20 21:14:18 +0000
committerZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-01-20 21:14:18 +0000
commit7d3fb0f38333996f93ac9af190eefe5ca663cb70 (patch)
treedecd1e70221f50722e1fb0ef17764fa8bbd665da /std/mem.zc
parentc52637a16cfb1d94458453d3b4d11a80db191f2d (diff)
Fix 'Clone' among other things
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> {