[Nice-commit] Nice/testsuite/compiler/typing object.testsuite,1.2,1.3
Brought to you by:
bonniot
From: <bo...@us...> - 2003-12-11 23:42:00
|
Update of /cvsroot/nice/Nice/testsuite/compiler/typing In directory sc8-pr-cvs1:/tmp/cvs-serv31453/testsuite/compiler/typing Modified Files: object.testsuite Log Message: Restore the ability to do 'new Object[...]'. Index: object.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/typing/object.testsuite,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** object.testsuite 8 Dec 2003 19:42:37 -0000 1.2 --- object.testsuite 11 Dec 2003 23:41:55 -0000 1.3 *************** *** 68,69 **** --- 68,73 ---- /// Toplevel void use(Object[]) {} + + /// PASS + ?Object[] o1 = new Object[1]; + Object[] o0 = new Object[0]; |