X-Git-Url: http://nitlanguage.org diff --git a/tests/test_operator_brackets.nit b/tests/test_operator_brackets.nit index d88deb2..e00f4d2 100644 --- a/tests/test_operator_brackets.nit +++ b/tests/test_operator_brackets.nit @@ -48,15 +48,7 @@ class Matrice row[y] = v end -private - var tab: Array[Array[Int]] # An array of array to store items - - - init - # Build an empty matrice - do - _tab = new Array[Array[Int]] - end + private var tab = new Array[Array[Int]] # An array of array to store items end