[Nice-commit] Nice/testsuite/compiler/abstractInterfaces existingClass.testsuite,1.3,1.4
Brought to you by:
bonniot
From: <ar...@us...> - 2003-09-15 22:29:26
|
Update of /cvsroot/nice/Nice/testsuite/compiler/abstractInterfaces In directory sc8-pr-cvs1:/tmp/cvs-serv22551/F:/nice/testsuite/compiler/abstractInterfaces Modified Files: existingClass.testsuite Log Message: Implemented the difference between classes and interface when implementing an abstract interface. Index: existingClass.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/abstractInterfaces/existingClass.testsuite,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** existingClass.testsuite 17 Feb 2003 15:40:59 -0000 1.3 --- existingClass.testsuite 15 Sep 2003 22:29:21 -0000 1.4 *************** *** 60,61 **** --- 60,76 ---- class java.io.File implements I; f(f...@ja...le) = new java.io.File("foo"); + + /// PASS + /// Toplevel + abstract interface AI {} + interface java.io.FileFilter implements AI; + + /// FAIL + /// Toplevel + abstract interface AI {} + class java.io.FileFilter implements AI; + + /// FAIL + /// Toplevel + abstract interface AI {} + interface java.lang.Object implements AI; |