Skip to content

Commit 7183ebe

Browse files
committed
Update tests with Range parameter to BTreeMap::extract_if etc.
1 parent 699a4f5 commit 7183ebe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/pass/btreemap.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ pub fn main() {
5050
test_all_refs(&mut 13, b.values_mut());
5151

5252
// Test forgetting the extractor.
53-
let mut d = b.extract_if(|_, i| *i < 30);
53+
let mut d = b.extract_if(.., |_, i| *i < 30);
5454
d.next().unwrap();
5555
mem::forget(d);
5656
}

0 commit comments

Comments
 (0)