Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 45e1ed8

Browse files
authoredDec 5, 2018
Rollup merge of #56538 - xfix:patch-13, r=bluss
Use inner iterator may_have_side_effect for Cloned Previous implementation wasn't correct, as an inner iterator could have had side effects. Noticed by @bluss in #56534.
2 parents 37bf0cb + a964307 commit 45e1ed8

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed
 

‎src/libcore/iter/mod.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,9 @@ unsafe impl<'a, I, T: 'a> TrustedRandomAccess for Cloned<I>
602602
}
603603

604604
#[inline]
605-
fn may_have_side_effect() -> bool { false }
605+
fn may_have_side_effect() -> bool {
606+
I::may_have_side_effect()
607+
}
606608
}
607609

608610
#[unstable(feature = "trusted_len", issue = "37572")]

‎src/libcore/tests/iter.rs

+17
Original file line numberDiff line numberDiff line change
@@ -1249,6 +1249,23 @@ fn test_cloned() {
12491249
assert_eq!(it.next_back(), None);
12501250
}
12511251

1252+
#[test]
1253+
fn test_cloned_side_effects() {
1254+
let mut count = 0;
1255+
{
1256+
let iter = [1, 2, 3]
1257+
.iter()
1258+
.map(|x| {
1259+
count += 1;
1260+
x
1261+
})
1262+
.cloned()
1263+
.zip(&[1]);
1264+
for _ in iter {}
1265+
}
1266+
assert_eq!(count, 2);
1267+
}
1268+
12521269
#[test]
12531270
fn test_double_ended_map() {
12541271
let xs = [1, 2, 3, 4, 5, 6];

0 commit comments

Comments
 (0)
Please sign in to comment.