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"
}