Files
kotlin-fork/compiler/testData/codegen/regressions/kt2270.kt
T
2012-08-06 16:32:36 +04:00

7 lines
103 B
Kotlin

class A(
val i : Int,
val j : Int = i
)
fun box() = if (A(1).j == 1) "OK" else "fail"