Files
kotlin/compiler/testData/codegen/classes/initializerBlock.jet
2011-10-20 16:21:18 +02:00

14 lines
139 B
Plaintext

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