* libjava.compile/PR234.java: New file. For PR gcj/234.
From-SVN: r34072
This commit is contained in:
parent
93a718f6b4
commit
13ffcdbbf6
2 changed files with 28 additions and 0 deletions
24
libjava/testsuite/libjava.compile/PR234.java
Normal file
24
libjava/testsuite/libjava.compile/PR234.java
Normal 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();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue