Skip to content

Commit 111dd6f

Browse files
committed
Remove code that spilled over from another branch
1 parent ddb834d commit 111dd6f

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/lib.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1598,17 +1598,6 @@ mod test {
15981598
assert_eq!(it.get(), None);
15991599
}
16001600

1601-
fn test_deref<I>(mut it: I, expected: &[I::Item])
1602-
where
1603-
I: Iterator,
1604-
I::Item: Sized + PartialEq + Debug,
1605-
{
1606-
for item in expected {
1607-
assert_eq!(it.next().as_ref(), Some(item));
1608-
}
1609-
assert_eq!(it.next(), None)
1610-
}
1611-
16121601
#[test]
16131602
fn all() {
16141603
let items = [0, 1, 2];

0 commit comments

Comments
 (0)