Files

18 lines
336 B
Kotlin
Vendored

open class Father(val param: String) {
abstract inner class InClass {
fun work(): String {
return param
}
}
inner class Child(p: String) : Father(p) {
inner class Child2 : Father.InClass() {
}
}
}
fun box(): String {
return Father("fail").Child("OK").Child2().work()
}