JavaTXCompilerInJavaTX/bin/mycompiler/test/notUsedAnymore/TestInheritanceCheckValidImplementationFromInterfaceNegative2.jav

14 lines
307 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
interface TestInheritanceCheckValidImplementationFromInterfaceNegative2{
public m();
}
class A implements TestInheritanceCheckValidImplementationFromInterfaceNegative2{
public void m(){}
}
class B implements TestInheritanceCheckValidImplementationFromInterfaceNegative2 {
public m() {
return 1;
}
}