Files
kotlin/compiler/testData/codegen/box/classes/initializerBlock.kt
2015-10-09 21:06:26 +03:00

14 lines
143 B
Kotlin
Vendored

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