File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/librustc_data_structures Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -484,7 +484,7 @@ fn grow() {
484484
485485#[ test]
486486fn matrix_intersection ( ) {
487- let mut vec1 = BitMatrix :: new ( 200 , 200 ) ;
487+ let mut vec1: BitMatrix < usize , usize > = BitMatrix :: new ( 200 , 200 ) ;
488488
489489 // (*) Elements reachable from both 2 and 65.
490490
@@ -515,7 +515,7 @@ fn matrix_intersection() {
515515
516516#[ test]
517517fn matrix_iter ( ) {
518- let mut matrix = BitMatrix :: new ( 64 , 100 ) ;
518+ let mut matrix: BitMatrix < usize , usize > = BitMatrix :: new ( 64 , 100 ) ;
519519 matrix. add ( 3 , 22 ) ;
520520 matrix. add ( 3 , 75 ) ;
521521 matrix. add ( 2 , 99 ) ;
@@ -557,7 +557,7 @@ fn matrix_iter() {
557557
558558#[ test]
559559fn sparse_matrix_iter ( ) {
560- let mut matrix = SparseBitMatrix :: new ( 64 , 100 ) ;
560+ let mut matrix: SparseBitMatrix < usize , usize > = SparseBitMatrix :: new ( 64 , 100 ) ;
561561 matrix. add ( 3 , 22 ) ;
562562 matrix. add ( 3 , 75 ) ;
563563 matrix. add ( 2 , 99 ) ;
You can’t perform that action at this time.
0 commit comments