Files
kotlin/compiler/testData/codegen/boxInline/callableReference/bound/objectProperty.kt
2016-09-07 12:01:49 +03:00

19 lines
206 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)
}