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