blob: d1c4ac75ebbf664f49110d0b6b44e33f2f082d67 [file] [log] [blame]
// IGNORE_BACKEND: JVM
object A {
private val s = object {
inline operator fun invoke(): String = "OK"
}
fun value() = s()
}
fun box(): String = A.value()