// FILE: 1.kt package test inline fun f(x : () -> T): Array = Array(1) { x() } // FILE: 2.kt import test.* fun box(): String = f { "OK" }[0]