[Nice-commit] Nice/testsuite/compiler/classes/constructors custom.testsuite,1.15,1.16
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2004-12-25 23:26:30
|
Update of /cvsroot/nice/Nice/testsuite/compiler/classes/constructors In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22430/testsuite/compiler/classes/constructors Modified Files: custom.testsuite Log Message: Ignore anonymous symbols instead of failing (occured at least with custom constructors). Index: custom.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/classes/constructors/custom.testsuite,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** custom.testsuite 25 Nov 2004 12:35:48 -0000 1.15 --- custom.testsuite 25 Dec 2004 23:26:19 -0000 1.16 *************** *** 145,146 **** --- 145,151 ---- } new X() = this(str: "abc"); + + /// PASS + /// Toplevel + class A {} + new A(int) { this(); } |