abstr.xfail: New file.

* libjava.compile/abstr.xfail: New file.
	* libjava.compile/abstr.java: New file.

From-SVN: r36087
This commit is contained in:
Tom Tromey 2000-09-01 00:13:31 +00:00 committed by Tom Tromey
parent ccbc3eb78e
commit b7fc330e44
3 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,14 @@
// 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 ();
}
}