Files
kotlin-fork/compiler/testData/codegen/box/functions/kt2270.kt
T
2018-06-21 13:27:17 +03:00

7 lines
103 B
Kotlin
Vendored

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