* libjava.compile/PR234.java: New file. For PR gcj/234.
authorTom Tromey <tromey@cygnus.com>
Mon, 22 May 2000 05:14:38 +0000 (05:14 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Mon, 22 May 2000 05:14:38 +0000 (05:14 +0000)
From-SVN: r34072

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

index 891d948feb978ed316d3ca3fc48d9d8d871d128e..b5f835efc72e8e2be4132eaf4dffb1541243779b 100644 (file)
@@ -1,3 +1,7 @@
+2000-05-21  Tom Tromey  <tromey@cygnus.com>
+
+       * libjava.compile/PR234.java: New file.  For PR gcj/234.
+
 2000-05-22  Bryce McKinlay  <bryce@albatross.co.nz>
 
        Test for PR gcj/232:
diff --git a/libjava/testsuite/libjava.compile/PR234.java b/libjava/testsuite/libjava.compile/PR234.java
new file mode 100644 (file)
index 0000000..61a1158
--- /dev/null
@@ -0,0 +1,24 @@
+// PR234.java
+public class PR234 extends B implements I
+{
+  public static void main(String args[])
+  {
+    PR234 x = new PR234();
+    x.m();
+  }
+}
+
+// B.java
+class B
+{
+  public void m()
+  {
+    System.out.println ("yes");
+  }
+}
+
+// I.java
+interface I
+{
+  public void m();
+}