Skip to content

Commit be42620

Browse files
committed
Fix tests
1 parent a1163af commit be42620

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test/bound.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,10 @@ fn for_lifetime() -> Result<()> {
128128
#[inline]
129129
fn clone(&self) -> Self {
130130
match self {
131-
Test(ref __field_0, ref __field_1) => Test(::core::clone::Clone::clone(__field_0), ::core::clone::Clone::clone(__field_1)),
131+
Test(ref __field_0, ref __field_1) => Test {
132+
0: ::core::clone::Clone::clone(__field_0),
133+
1: ::core::clone::Clone::clone(__field_1)
134+
},
132135
}
133136
}
134137
}

0 commit comments

Comments
 (0)