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