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

From-SVN: r34072
This commit is contained in:
Tom Tromey 2000-05-22 05:14:38 +00:00 committed by Tom Tromey
parent 93a718f6b4
commit 13ffcdbbf6
2 changed files with 28 additions and 0 deletions

View 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:

View file

@ -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();
}