[Nice-commit] Nice/testsuite/compiler/packages nicei.testsuite,1.3,1.4
Brought to you by:
bonniot
From: <ar...@us...> - 2003-10-05 14:21:39
|
Update of /cvsroot/nice/Nice/testsuite/compiler/packages In directory sc8-pr-cvs1:/tmp/cvs-serv14541/F:/nice/testsuite/compiler/packages Modified Files: nicei.testsuite Log Message: Fix printing of NewArrayExp. Index: nicei.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/packages/nicei.testsuite,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** nicei.testsuite 24 Jul 2003 21:26:19 -0000 1.3 --- nicei.testsuite 5 Oct 2003 14:21:33 -0000 1.4 *************** *** 85,86 **** --- 85,93 ---- /// package b import a ; + + /// PASS + /// package a + /// toplevel + var int[][] arr = new int[10][10]; + /// package b import a + ; |