Files
kotlin/compiler/testData/codegen/boxWithStdlib/platformNames/callableReference.kt
2014-06-10 18:21:36 +04:00

11 lines
165 B
Kotlin

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