Files
kotlin/compiler/testData/codegen/boxWithStdlib/jvmName/functionName.kt

9 lines
129 B
Kotlin
Vendored

@JvmName("bar")
fun foo() = "foo"
fun box(): String {
val f = foo()
if (f != "foo") return "Fail: $f"
return "OK"
}