Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/jvmName/callableReference.kt
T

11 lines
164 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"
}