[Nice-commit] Nice/testsuite/compiler/classes/constructors custom.testsuite,1.7,1.8
Brought to you by:
bonniot
From: <bo...@us...> - 2003-12-22 01:31:02
|
Update of /cvsroot/nice/Nice/testsuite/compiler/classes/constructors In directory sc8-pr-cvs1:/tmp/cvs-serv26684/testsuite/compiler/classes/constructors Modified Files: custom.testsuite Log Message: Classes now have default constructors build upon their parent's custom constructors. Index: custom.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/classes/constructors/custom.testsuite,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** custom.testsuite 16 Dec 2003 12:59:50 -0000 1.7 --- custom.testsuite 22 Dec 2003 01:30:59 -0000 1.8 *************** *** 35,39 **** } ! /// PASS bug var p = new Point(angle: 0, distance: 1); assert abs(p.x - 1) < 0.01 && abs(p.y) < 0.01; --- 35,39 ---- } ! /// PASS var p = new Point(angle: 0, distance: 1); assert abs(p.x - 1) < 0.01 && abs(p.y) < 0.01; |