38922a84f1
^KT-35495 Fixed
16 lines
220 B
Kotlin
Vendored
16 lines
220 B
Kotlin
Vendored
class C {
|
|
|
|
val s = "OK"
|
|
|
|
private val localObject = object {
|
|
fun getS(): String {
|
|
return s
|
|
}
|
|
}
|
|
|
|
fun ok(): String =
|
|
33.let { localObject.getS() }
|
|
}
|
|
|
|
fun box() = C().ok()
|