Commit 4fd69ed9 authored by Boris Mühmer's avatar Boris Mühmer
Browse files

removed redudant type infos

parent 5637bd6f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -14,10 +14,10 @@ func TestArrays(t *testing.T) {
	//}

	d := [4][3]int{
		[3]int{11, 12, 13},
		[3]int{21, 22, 23},
		[3]int{31, 32, 33},
		[3]int{41, 42, 43},
		{11, 12, 13},
		{21, 22, 23},
		{31, 32, 33},
		{41, 42, 43},
	}

	for j, y := range d {