Fix access to private static native functions

This commit is contained in:
Andrey Breslav
2014-12-02 14:31:46 +03:00
parent f9fea88749
commit 120c344f11
7 changed files with 85 additions and 18 deletions
@@ -0,0 +1,16 @@
import kotlin.platform.platformStatic
object A {
private platformStatic fun a(): String {
return "OK"
}
object Z {
val p = a()
}
}
fun box(): String {
return A.Z.p
}