b7fc330e44
* libjava.compile/abstr.xfail: New file. * libjava.compile/abstr.java: New file. From-SVN: r36087
15 lines
209 B
Java
15 lines
209 B
Java
// This fails to compile from bytecode for some versions of the compiler.
|
|
|
|
interface foo
|
|
{
|
|
public void start ();
|
|
}
|
|
|
|
public abstract class abstr implements foo
|
|
{
|
|
public void doit ()
|
|
{
|
|
start ();
|
|
}
|
|
}
|