Support platformStatic for properties

#KT-5766 Fixed
This commit is contained in:
Michael Bogdanov
2014-11-14 15:48:45 +03:00
parent 5412a67d29
commit 2cc9d8e29b
24 changed files with 450 additions and 165 deletions
@@ -0,0 +1,11 @@
import kotlin.platform.platformStatic
object X {
platformStatic val x = "OK"
fun fn(value : String = x): String = value
}
fun box(): String {
return X.fn()
}