// FILE: test.kt class A { companion object { val s: String init { s = "OK" } val x = x() init { val a = 32 } init { val b = 42 } init { val c = 43 } } } fun x() = "" fun box() { A.x A.s } // LINENUMBERS // test.kt:29 box // test.kt:7 // test.kt:8 // test.kt:9 // test.kt:11 // test.kt:13 // test.kt:15 // test.kt:16 // test.kt:17 // test.kt:19 // test.kt:21 // test.kt:22 // test.kt:11 getX // test.kt:11 getX // test.kt:29 box // test.kt:30 box // test.kt:5 getS // test.kt:5 getS // test.kt:30 box // test.kt:31 box