Files
kotlin/compiler/testData/codegen/boxWithStdlib/platformStatic/simple.kt
Michael Bogdanov 2cc9d8e29b Support platformStatic for properties
#KT-5766 Fixed
2014-11-20 10:20:31 +03:00

44 lines
783 B
Kotlin

import kotlin.platform.platformStatic
object A {
val b: String = "OK"
platformStatic val c: String = "OK"
platformStatic fun test1() : String {
return b
}
platformStatic fun test2() : String {
return test1()
}
fun test3(): String {
return "1".test5()
}
platformStatic fun test4(): String {
return "1".test5()
}
platformStatic fun String.test5() : String {
return this + b
}
}
fun box(): String {
if (A.test1() != "OK") return "fail 1"
if (A.test2() != "OK") return "fail 2"
if (A.test3() != "1OK") return "fail 3"
if (A.test4() != "1OK") return "fail 4"
if (with(A) {"1".test5()} != "1OK") return "fail 5"
if (A.c != "OK") return "fail 6"
return "OK"
}