mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
18 lines
194 B
Kotlin
Vendored
18 lines
194 B
Kotlin
Vendored
// FILE: 1.kt
|
|
|
|
package test
|
|
|
|
val a: String
|
|
get() = "OK"
|
|
|
|
inline fun test(s: () -> String): String {
|
|
return s()
|
|
}
|
|
|
|
// FILE: 2.kt
|
|
|
|
import test.*
|
|
|
|
fun box(): String {
|
|
return test(::a)
|
|
} |