mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
9 lines
129 B
Kotlin
Vendored
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"
|
|
} |