Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
codegen
/
boxJvm
/
jvmStatic
/
functionReference.kt
blob: 549d15105c2c0d4074713e1e8b806fd855a193e4 [
file
]
// TARGET_BACKEND: JVM
// WITH_STDLIB
// FILE: u1.kt
object
O
{
@JvmStatic
fun foo
()
=
"OK"
}
// FILE: u2.kt
fun box
()
=
(
O
::
foo
).
let
{
it
()
}