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

19 lines
252 B
Kotlin
Vendored

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