Files
kotlin/idea/testData/codeInsight/overrideImplement/javaMethodWithPackageVisibility/foo/Intf.java
2013-02-06 21:54:16 +04:00

8 lines
88 B
Java

package foo;
public class Intf {
String getFooBar() {
return "OK";
}
}