Files
kotlin-fork/js/js.translator/testData/examples/cases/initializerBlock.kt
T
2015-04-07 13:08:51 +03:00

14 lines
160 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"
}