Files
kotlin/compiler/testData/codegen/boxAgainstJava/visibility/protectedStatic/funNestedStaticGenericClass.kt
2015-10-08 18:31:07 +03:00

10 lines
212 B
Kotlin
Vendored

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