Update of /cvsroot/nice/Nice/testsuite/compiler/abstractInterfaces
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25445/F:/nice/testsuite/compiler/abstractInterfaces
Modified Files:
existingClass.testsuite
Log Message:
Added the rest of the obvious failure locations.
Index: existingClass.testsuite
===================================================================
RCS file: /cvsroot/nice/Nice/testsuite/compiler/abstractInterfaces/existingClass.testsuite,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** existingClass.testsuite 1 Mar 2005 18:56:18 -0000 1.11
--- existingClass.testsuite 13 Mar 2005 15:27:40 -0000 1.12
***************
*** 20,24 ****
/// package b
/// Toplevel
! class java.lang.String implements a.I;
/// FAIL
--- 20,24 ----
/// package b
/// Toplevel
! class java.lang.String implements a /*/// FAIL HERE */ .I;
/// FAIL
***************
*** 28,37 ****
/// package b import a
/// Toplevel
! class java.lang.String implements I;
/// FAIL
/// Toplevel
! abstract interface I { void f(); }
class java.lang.String implements I;
--- 28,37 ----
/// package b import a
/// Toplevel
! class java.lang.String implements /*/// FAIL HERE */ I;
/// FAIL
/// Toplevel
! abstract interface I { void /*/// FAIL HERE */ f(); }
class java.lang.String implements I;
***************
*** 59,63 ****
}
class java.io.File implements I;
! f(java.io.File f) = new java.io.File("foo");
/// PASS
--- 59,63 ----
}
class java.io.File implements I;
! f(java.io.File f) = /*/// FAIL HERE */ new java.io.File("foo");
/// PASS
***************
*** 70,74 ****
abstract interface AI {}
// FileFilter is not a class
! class java.io.FileFilter implements AI;
/// FAIL
--- 70,74 ----
abstract interface AI {}
// FileFilter is not a class
! class /*/// FAIL HERE */ java.io.FileFilter implements AI;
/// FAIL
***************
*** 76,80 ****
abstract interface AI {}
// String is not an interface
! interface java.lang.String implements AI;
/// PASS
--- 76,80 ----
abstract interface AI {}
// String is not an interface
! interface /*/// FAIL HERE */ java.lang.String implements AI;
/// PASS
|