[kaffe] Bug [CVS version]: Calling non-implemented method in abstract class

2003-03-28 Thread Benja Fallenstein
Hi all, The following code: --- snip --- public class Bug { interface Interface { void foo(); } static abstract class Abstract implements Interface { public void bug() { foo(); } } static class Impl extends Abstract { public void foo() {} }

Re: [kaffe] Bug [CVS version]: Calling non-implemented method in abstract class

2003-03-28 Thread Timothy Stack
Hi all, hi, The following code: --- snip --- gives me the following error: [EMAIL PROTECTED]:~/ff/fenfire$ /usr/local/kaffe/bin/kaffe -cp build Bug java.lang.NoSuchMethodError: Bug$Abstract.foo()V at Bug$Abstract.bug(source file unknown:line unknown, pc 0x81ff788)