Added test checking that initialization order in package part is not violated.
This commit is contained in:
@@ -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)
|
||||
}
|
||||
@@ -4253,6 +4253,11 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
|
||||
doTest("compiler/testData/codegen/box/package/incrementProperty.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("initializationOrder.kt")
|
||||
public void testInitializationOrder() throws Exception {
|
||||
doTest("compiler/testData/codegen/box/package/initializationOrder.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("invokespecial.kt")
|
||||
public void testInvokespecial() throws Exception {
|
||||
doTest("compiler/testData/codegen/box/package/invokespecial.kt");
|
||||
|
||||
Reference in New Issue
Block a user