Skip to content

Commit 715341d

Browse files
committed
Update tests
1 parent d76fccc commit 715341d

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

tests/unit/out/refcount/va_arg_non_primitive_ptrs.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,6 @@ pub struct node {
1111
pub data: Value<i32>,
1212
pub next: Value<Ptr<node>>,
1313
}
14-
impl Clone for node {
15-
fn clone(&self) -> Self {
16-
Self {
17-
data: Rc::new(RefCell::new((*self.data.borrow()).clone())),
18-
next: Rc::new(RefCell::new((*self.next.borrow()).clone())),
19-
}
20-
}
21-
}
2214
impl ByteRepr for node {
2315
fn byte_size() -> usize {
2416
16

0 commit comments

Comments
 (0)