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

10 lines
220 B
Kotlin

class Derived(): funNestedStaticGenericClass<String>.Inner<String>() {
fun test(): String {
return funNestedStaticGenericClass.Inner.protectedFun()!!
}
}
fun box(): String {
return Derived().test()
}