// FILE: 1.kt package test inline fun f(): Array = arrayOf() // FILE: 2.kt import test.* fun box(): String { f() return "OK" }