gcc/libjava/testsuite/libjava.compile/abstr.java
Tom Tromey b7fc330e44 abstr.xfail: New file.
* libjava.compile/abstr.xfail: New file.
	* libjava.compile/abstr.java: New file.

From-SVN: r36087
2000-09-01 00:13:31 +00:00

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