// FIR_IDENTICAL fun interface KRunnable { fun invoke() } fun test(a: Any?) { a as () -> Unit KRunnable(a).invoke() }