blob: 0212e85835ed8d8e2dad09a9c1097beea28bcd80 [file]
object A {
private val s = object {
inline operator fun invoke(): String = "OK"
}
fun value() = s()
}
fun box(): String = A.value()