Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmName
/
functionName.kt
blob: ce89102fe01bd4428b2b56e00c4b09d7a4027fde [
file
] [
log
] [
blame
]
// TARGET_BACKEND: JVM
// WITH_RUNTIME
@JvmName
(
"bar"
)
fun foo
()
=
"foo"
fun box
():
String
{
val f
=
foo
()
if
(
f
!=
"foo"
)
return
"Fail: $f"
return
"OK"
}