Added test checking that initialization order in package part is not violated.

This commit is contained in:
Evgeny Gerashchenko
2014-03-24 21:39:01 +04:00
parent d62bc07437
commit 537c03fb1a
2 changed files with 19 additions and 0 deletions
@@ -0,0 +1,14 @@
fun box(): String? {
val log = System.getProperty("boxtest.log")
System.clearProperty("boxtest.log") // test can be run twice
return if (log == "bca") "OK" else log
}
val b = log("b")
val c = log("c")
val a = log("a")
fun log(message: String) {
val value = (System.getProperty("boxtest.log") ?: "") + message
System.setProperty("boxtest.log", value)
}