Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmName
/
functionName.kt
blob: ac0192632d51d5632e682aff41e40d5aeee56f75 [
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"
}