blob: e7d1e3c20fff653e449dc87b9ac4a78faf6c9338 [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"
}