Community
Participate
Working Groups
using the attached I expect to see: value[1][1]:index11 value[1][2]:index12 value[1][3]:index13 value[2][1]:index21 value[2][2]:index22 value[2][3]:index23 but there is no output
Created attachment 205863 [details] testcase
Ji Yong, Check with Jeff on whether Java gen properly supports multi-dimensional arrays and if so, ask for which template(s) are involved.
Created attachment 206379 [details] Patch Here is a patch.
Hi Yunfeng, This patch cannot pass this test case (the same as 362507) myNames string[] =["Carolina", "State", "Duke"]; element string = "Meredith"; newList string[]; function start() newList = myNames :: element; end Please review. (In reply to comment #3) > Created attachment 206379 [details] > Patch > > Here is a patch.
Created attachment 206387 [details] Patch Another patch.
Fixed, the root cause is that the multidimensional arrays are not initialized. Thanks.
verified