Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmName
/
callableReference.kt
blob: e7d1e3c20fff653e449dc87b9ac4a78faf6c9338 [
file
]
// TARGET_BACKEND: JVM
// WITH_RUNTIME
@JvmName
(
"bar"
)
fun foo
()
=
"foo"
fun box
():
String
{
val f
=
(::
foo
)()
if
(
f
!=
"foo"
)
return
"Fail: $f"
return
"OK"
}