[Nice-commit] Nice/testsuite/compiler/classes/constructors custom.testsuite,1.14,1.15
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2004-11-25 12:36:03
|
Update of /cvsroot/nice/Nice/testsuite/compiler/classes/constructors In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14584/F:/nice/testsuite/compiler/classes/constructors Modified Files: custom.testsuite Log Message: Avoid NPE, fixes bug #1072970. Index: custom.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/classes/constructors/custom.testsuite,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** custom.testsuite 22 Nov 2004 21:37:04 -0000 1.14 --- custom.testsuite 25 Nov 2004 12:35:48 -0000 1.15 *************** *** 137,138 **** --- 137,146 ---- this(); } + + /// PASS + // bug #1072970 + /// Toplevel + class X { + String str; + } + new X() = this(str: "abc"); |