]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/empty-tag.rs
auto merge of #19514 : jbranchaud/rust/add-btree-set-bitor, r=Gankro
[rust.git] / src / test / run-pass / empty-tag.rs
index 6b780d854599e54880d1692b4f2177136e747e34..e5d11ac1adb2aeebfe2863c9be7701c1c20af482 100644 (file)
@@ -11,6 +11,8 @@
 #[deriving(Show)]
 enum chan { chan_t, }
 
+impl Copy for chan {}
+
 impl PartialEq for chan {
     fn eq(&self, other: &chan) -> bool {
         ((*self) as uint) == ((*other) as uint)