15 lines
188 B
Kotlin
Vendored
15 lines
188 B
Kotlin
Vendored
// 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" }
|
|
}
|