This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
Patch: PR 234
- To: Java Patch List <java-patches at sourceware dot cygnus dot com>
- Subject: Patch: PR 234
- From: Tom Tromey <tromey at cygnus dot com>
- Date: 21 May 2000 23:13:23 -0600
- Reply-To: tromey at cygnus dot com
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();
+}