Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
callableReference
/
jvmFieldProperty.kt
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
)
}