blob: 245c12ec51e3dfe8fd0f55febc6f65118e8c5590 [file]
// ISSUE: KT-83308, fixed in 2.4.0-Beta1
// IGNORE_KLIB_RUNTIME_ERRORS_WITH_CUSTOM_SECOND_STAGE: Native:2.3
fun interface SomeFun {
override fun toString(): String
}
fun foo(o: Any) = o.toString()
fun box(): String {
val o = SomeFun { "O" }
val k = SomeFun { "K" }
return o.toString() + foo(k)
}