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