Files
kotlin/compiler/testData/codegen/boxWithStdlib/platformNames/functionName.kt
2015-06-12 09:23:31 +03:00

11 lines
160 B
Kotlin
Vendored

import kotlin.platform.*
@platformName("bar")
fun foo() = "foo"
fun box(): String {
val f = foo()
if (f != "foo") return "Fail: $f"
return "OK"
}