@@ -57,11 +57,11 @@ fn main() {
57
57
all_sync_send ! ( BinaryHeap :: <usize >:: new( ) , iter, drain, into_iter) ;
58
58
59
59
all_sync_send ! ( BTreeMap :: <usize , usize >:: new( ) , iter, iter_mut, into_iter, keys, values) ;
60
- is_sync_send ! ( BTreeMap :: <usize , usize >:: new( ) , range( Included ( & 0 ) , Included ( & 9 ) ) ) ;
61
- is_sync_send ! ( BTreeMap :: <usize , usize >:: new( ) , range_mut( Included ( & 0 ) , Included ( & 9 ) ) ) ;
60
+ is_sync_send ! ( BTreeMap :: <usize , usize >:: new( ) , range( ( Included ( & 0 ) , Included ( & 9 ) ) ) ) ;
61
+ is_sync_send ! ( BTreeMap :: <usize , usize >:: new( ) , range_mut( ( Included ( & 0 ) , Included ( & 9 ) ) ) ) ;
62
62
63
63
all_sync_send ! ( BTreeSet :: <usize >:: new( ) , iter, into_iter) ;
64
- is_sync_send ! ( BTreeSet :: <usize >:: new( ) , range( Included ( & 0 ) , Included ( & 9 ) ) ) ;
64
+ is_sync_send ! ( BTreeSet :: <usize >:: new( ) , range( ( Included ( & 0 ) , Included ( & 9 ) ) ) ) ;
65
65
is_sync_send ! ( BTreeSet :: <usize >:: new( ) , difference( & BTreeSet :: <usize >:: new( ) ) ) ;
66
66
is_sync_send ! ( BTreeSet :: <usize >:: new( ) , symmetric_difference( & BTreeSet :: <usize >:: new( ) ) ) ;
67
67
is_sync_send ! ( BTreeSet :: <usize >:: new( ) , intersection( & BTreeSet :: <usize >:: new( ) ) ) ;
0 commit comments