OSDN Git Service

* libjava.compile/abstr.xfail: New file.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 1 Sep 2000 00:13:31 +0000 (00:13 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 1 Sep 2000 00:13:31 +0000 (00:13 +0000)
* libjava.compile/abstr.java: New file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36087 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/testsuite/ChangeLog
libjava/testsuite/libjava.compile/abstr.java [new file with mode: 0644]
libjava/testsuite/libjava.compile/abstr.xfail [new file with mode: 0644]

index ff9b8a6..59339cf 100644 (file)
@@ -1,3 +1,8 @@
+2000-08-31  Tom Tromey  <tromey@cygnus.com>
+
+       * libjava.compile/abstr.xfail: New file.
+       * libjava.compile/abstr.java: New file.
+
 2000-08-09  Tom Tromey  <tromey@cygnus.com>
 
        From PR gcj/310:
diff --git a/libjava/testsuite/libjava.compile/abstr.java b/libjava/testsuite/libjava.compile/abstr.java
new file mode 100644 (file)
index 0000000..f59db26
--- /dev/null
@@ -0,0 +1,14 @@
+// This fails to compile from bytecode for some versions of the compiler.
+
+interface foo
+{
+  public void start ();
+}
+
+public abstract class abstr implements foo
+{
+  public void doit ()
+  {
+    start ();
+  }
+}
diff --git a/libjava/testsuite/libjava.compile/abstr.xfail b/libjava/testsuite/libjava.compile/abstr.xfail
new file mode 100644 (file)
index 0000000..76540af
--- /dev/null
@@ -0,0 +1 @@
+no-link