blob: f59db268bc31d6187150197c7f6b54aa0067f354 [file] [log] [blame]
// 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 ();
}
}