Patch: PR 234
Tom Tromey
tromey@cygnus.com
Sun May 21 22:12:00 GMT 2000
I'm checking this in. It adds the PR 234 test to the test suite.
2000-05-21 Tom Tromey <tromey@cygnus.com>
* libjava.compile/PR234.java: New file. For PR gcj/234.
Tom
Index: libjava.compile/PR234.java
===================================================================
RCS file: PR234.java
diff -N PR234.java
--- /dev/null Tue May 5 13:32:27 1998
+++ PR234.java Sun May 21 22:11:29 2000
@@ -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();
+}
More information about the Java-patches
mailing list