Files
kotlin/compiler/testData/codegen/boxAgainstJava/visibility/protectedStatic/funNestedStaticGenericClass.kt
2014-06-26 20:57:40 +04:00

10 lines
220 B
Kotlin
Vendored

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