[Nice-commit] Nice/testsuite/compiler/null export.testsuite,1.2,1.3
Brought to you by:
bonniot
From: <ar...@us...> - 2004-01-15 21:39:23
|
Update of /cvsroot/nice/Nice/testsuite/compiler/null In directory sc8-pr-cvs1:/tmp/cvs-serv24986/F:/nice/testsuite/compiler/null Modified Files: export.testsuite Log Message: Stricter parsing of expressions used as statement. Index: export.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/null/export.testsuite,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** export.testsuite 24 Jul 2002 17:29:49 -0000 1.2 --- export.testsuite 15 Jan 2004 21:39:19 -0000 1.3 *************** *** 28,32 **** class A { ?int[?] f; } /// package b import a ! new A(f: null); /// PASS --- 28,32 ---- class A { ?int[?] f; } /// package b import a ! let dummy = new A(f: null); /// PASS *************** *** 35,37 **** class A { int?->int f; } /// package b import a ! new A(f: null); --- 35,37 ---- class A { int?->int f; } /// package b import a ! let dummy = new A(f: null); |