blob: 79664a993a84843563e70a59715de6bdef9e9157 [file]
// FILE: lib.kt
inline fun foo() = (object : II {}).ok()
interface I {
fun ok() = "OK"
}
interface II: I
// FILE: main.kt
// CHECK_BREAKS_COUNT: function=box count=0
// CHECK_LABELS_COUNT: function=box name=$l$block count=0
fun box() = foo()