5dca4dbc67
#KT-11833 Fixed
17 lines
321 B
Kotlin
Vendored
17 lines
321 B
Kotlin
Vendored
abstract class Father {
|
|
abstract inner class InClass {
|
|
abstract fun work(): String
|
|
}
|
|
}
|
|
|
|
class Child : Father() {
|
|
val ChildInClass = object : Father.InClass() {
|
|
override fun work(): String {
|
|
return "OK"
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return Child().ChildInClass.work()
|
|
} |