From 65aafb3cf1cb1da6ef38076abdb9d50de962628c Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sun, 6 Oct 2019 04:18:55 +0300 Subject: [PATCH] 3d arrays are not supported yet --- vlib/builtin/array_test.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/builtin/array_test.v b/vlib/builtin/array_test.v index ac560d3c79..df8b2588e4 100644 --- a/vlib/builtin/array_test.v +++ b/vlib/builtin/array_test.v @@ -284,6 +284,6 @@ fn test_multi() { assert a[0][2] == 3 assert a[1][2] == 6 // TODO - b := [ [[1,2,3],[4,5,6]], [[1,2]] ] - assert b[0][0][0] == 1 + //b := [ [[1,2,3],[4,5,6]], [[1,2]] ] + //assert b[0][0][0] == 1 }