[Nice-commit] Nice/testsuite/compiler/methods defaultImplementation.testsuite,NONE,1.1
Brought to you by:
bonniot
From: <bo...@us...> - 2003-09-11 21:09:51
|
Update of /cvsroot/nice/Nice/testsuite/compiler/methods In directory sc8-pr-cvs1:/tmp/cvs-serv531/testsuite/compiler/methods Added Files: defaultImplementation.testsuite Log Message: Replaced functions by methods with default implementations. --- NEW FILE: defaultImplementation.testsuite --- /// PASS A a = new A(); assert a.f() == 1; a = new B(); assert a.f() == 2; /// Toplevel class A { int f() = 1; } class B extends A { f() = 2; } |