blob: 45a6a2f6c428303c69922965de031c716778a8fa [file]
// 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)
}