mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
17 lines
189 B
Kotlin
Vendored
17 lines
189 B
Kotlin
Vendored
// FILE: 1.kt
|
|
|
|
package test
|
|
|
|
inline fun go(f: () -> String) = f()
|
|
|
|
fun String.id(): String = this
|
|
|
|
// FILE: 2.kt
|
|
|
|
import test.*
|
|
|
|
fun box(): String {
|
|
val x = "OK"
|
|
return go(x::id)
|
|
}
|