Files
kotlin/compiler/testData/codegen/box/classes/kt2384.kt
2015-04-07 13:08:51 +03:00

16 lines
208 B
Kotlin
Vendored

class A {
companion object {
val b = 0
val c = b
init {
val d = b
}
}
}
fun box(): String {
A()
return if (A.c == A.b) "OK" else "Fail"
}