forked from JavaTX/JavaCompilerCore
14 lines
307 B
Plaintext
14 lines
307 B
Plaintext
|
interface TestInheritanceCheckValidImplementationFromInterfaceNegative2{
|
||
|
public m();
|
||
|
}
|
||
|
class A implements TestInheritanceCheckValidImplementationFromInterfaceNegative2{
|
||
|
|
||
|
public void m(){}
|
||
|
}
|
||
|
|
||
|
class B implements TestInheritanceCheckValidImplementationFromInterfaceNegative2 {
|
||
|
|
||
|
public m() {
|
||
|
return 1;
|
||
|
}
|
||
|
}
|