Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmStatic
/
functionReference.kt
blob: 93f187f39044c77d96da04b51390bdcec59be0c2 [
file
] [
log
] [
blame
]
// TARGET_BACKEND: JVM
// WITH_RUNTIME
// FILE: u1.kt
object
O
{
@JvmStatic
fun foo
()
=
"OK"
}
// FILE: u2.kt
fun box
()
=
(
O
::
foo
)()