Commit 13ffcdbb by Tom Tromey Committed by Tom Tromey

* libjava.compile/PR234.java: New file. For PR gcj/234.

From-SVN: r34072
parent 93a718f6
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:
......
// 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();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment