blob: bf35526cf27ce243310380257edb0ef0ecf95ac8 [file] [log] [blame]
// FILE: 1+a.kt
package test
inline fun inlineFun(lambda: () -> String): String {
return lambda()
}
// FILE: 2.kt
import test.*
fun box(): String {
return inlineFun { "OK" }
}