Files
kotlin-fork/compiler/testData/codegen/box/classes/kt2384.kt
T

16 lines
203 B
Kotlin

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