Files
kotlin/compiler/testData/codegen/boxWithJava/protectedStatic/funNestedStaticGenericClass.java
Alexander Udalov 2904d1745b Remove generated black box java codegen test
Move all testData to boxWithJava/
2013-01-28 18:20:41 +04:00

8 lines
173 B
Java

public class funNestedStaticGenericClass<T> {
public static class Inner<S> {
protected static String protectedFun() {
return "OK";
}
}
}