[Nice-commit] Nice/testsuite/compiler/native methods.testsuite,1.4,1.5
Brought to you by:
bonniot
From: <bo...@us...> - 2003-08-09 21:01:54
|
Update of /cvsroot/nice/Nice/testsuite/compiler/native In directory sc8-pr-cvs1:/tmp/cvs-serv13767/testsuite/compiler/native Modified Files: methods.testsuite Log Message: Also look for methods in super-interfaces. Index: methods.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/native/methods.testsuite,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** methods.testsuite 24 Jun 2003 20:07:37 -0000 1.4 --- methods.testsuite 9 Aug 2003 21:01:51 -0000 1.5 *************** *** 24,25 **** --- 24,32 ---- String foo(boolean b) = (b ? new Integer(1) : new Long(2)).toString(); + + /// PASS + /// Toplevel + class A extends java.io.ObjectInputStream + { + readBoolean() = false; + } |