mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
12 lines
146 B
Kotlin
Vendored
12 lines
146 B
Kotlin
Vendored
// FILE: 1.kt
|
|
package test
|
|
inline fun foo(x: () -> String) = x()
|
|
|
|
fun String.id() = this
|
|
|
|
// FILE: 2.kt
|
|
|
|
import test.*
|
|
|
|
fun box() = foo("OK"::id)
|