File tree 2 files changed +23
-1
lines changed
library/std/src/collections/hash
2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -875,7 +875,9 @@ where
875
875
/// Returns whether the value was newly inserted. That is:
876
876
///
877
877
/// - If the set did not previously contain this value, `true` is returned.
878
- /// - If the set already contained this value, `false` is returned.
878
+ /// - If the set already contained this value, `false` is returned,
879
+ /// and the set is not modified: original value is not replaced,
880
+ /// and the value passed as argument is dropped.
879
881
///
880
882
/// # Examples
881
883
///
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ use super::HashSet;
3
3
4
4
use crate :: panic:: { catch_unwind, AssertUnwindSafe } ;
5
5
use crate :: sync:: atomic:: { AtomicU32 , Ordering } ;
6
+ use crate :: sync:: Arc ;
6
7
7
8
#[ test]
8
9
fn test_zero_capacities ( ) {
@@ -502,3 +503,22 @@ fn const_with_hasher() {
502
503
const X : HashSet < ( ) , ( ) > = HashSet :: with_hasher ( ( ) ) ;
503
504
assert_eq ! ( X . len( ) , 0 ) ;
504
505
}
506
+
507
+ #[ test]
508
+ fn test_insert_does_not_overwrite_the_value ( ) {
509
+ let first_value = Arc :: new ( 17 ) ;
510
+ let second_value = Arc :: new ( 17 ) ;
511
+
512
+ let mut set = HashSet :: new ( ) ;
513
+ let inserted = set. insert ( first_value. clone ( ) ) ;
514
+ assert ! ( inserted) ;
515
+
516
+ let inserted = set. insert ( second_value) ;
517
+ assert ! ( !inserted) ;
518
+
519
+ assert ! (
520
+ Arc :: ptr_eq( set. iter( ) . next( ) . unwrap( ) , & first_value) ,
521
+ "Insert must not overwrite the value, so the contained value pointer \
522
+ must be the same as first value pointer we inserted"
523
+ ) ;
524
+ }
You can’t perform that action at this time.
0 commit comments