mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
20 lines
235 B
Kotlin
Vendored
20 lines
235 B
Kotlin
Vendored
// FILE: 1.kt
|
|
|
|
package test
|
|
|
|
inline fun <R> mfun(f: () -> R) {
|
|
f()
|
|
f()
|
|
}
|
|
|
|
public inline fun String.toLowerCase2() : String = ""
|
|
|
|
// FILE: 2.kt
|
|
|
|
import test.*
|
|
|
|
fun box(): String {
|
|
mfun{ "".toLowerCase2() }
|
|
return "OK"
|
|
}
|