mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
9 lines
136 B
Kotlin
Vendored
9 lines
136 B
Kotlin
Vendored
open class Base(val s: String)
|
|
|
|
object Host {
|
|
class Derived : Base(this.foo())
|
|
|
|
fun foo() = "OK"
|
|
}
|
|
|
|
fun box() = Host.Derived().s |