Files
kotlin-fork/compiler/testData/codegen/boxInline/callableReference/bound/jvmFieldProperty.kt
T
2019-06-04 14:56:13 +02:00

19 lines
246 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// WITH_RUNTIME
// FILE: 1.kt
package test
class Foo(@JvmField val a: String)
inline fun test(s: () -> String): String {
return s()
}
// FILE: 2.kt
import test.*
fun box(): String {
return test(Foo("OK")::a)
}