diff options
Diffstat (limited to 'std')
| -rw-r--r-- | std/mem.zc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -15,6 +15,12 @@ trait Drop { fn drop(self); } +trait Copy {} + +trait Clone { + // fn clone(self) -> Self; +} + struct Box<T> { ptr: T*; } |
