Files
kotlin-fork/backend.native/tests/external/codegen/box/classes/initializerBlock.kt
T
2017-03-13 15:31:46 +03:00

14 lines
143 B
Kotlin

class C() {
public var f: Int
init {
f = 610
}
}
fun box(): String {
val c = C()
if (c.f != 610) return "fail"
return "OK"
}