Files
kotlin-fork/compiler/testData/codegen/boxInline/callableReference/bound/objectProperty.kt
T
2021-02-02 17:53:52 +03:00

20 lines
207 B
Kotlin
Vendored

// FILE: 1.kt
package test
object Foo {
val a: String = "OK"
}
inline fun test(s: () -> String): String {
return s()
}
// FILE: 2.kt
import test.*
fun box(): String {
return test(Foo::a)
}