forked from JavaTX/JavaCompilerCore
7 lines
131 B
Plaintext
7 lines
131 B
Plaintext
|
interface A{
|
||
|
public m();
|
||
|
}
|
||
|
class TestInheritanceCheckValidImplementationFromInterfaceNegative implements A{
|
||
|
|
||
|
public void m1(){}
|
||
|
}
|