Files
kotlin-fork/backend.native/tests/external/codegen/boxInline/callableReference/topLevelProperty.kt
T
2017-03-13 15:31:46 +03:00

18 lines
194 B
Kotlin

// 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)
}