15 lines
202 B
Kotlin
Vendored
15 lines
202 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
class Host {
|
|
val ok = "OK"
|
|
|
|
fun foo() = run { bar(ok) }
|
|
|
|
companion object {
|
|
val ok = 0
|
|
|
|
fun bar(s: String) = s.substring(ok)
|
|
}
|
|
}
|
|
|
|
fun box() = Host().foo() |