41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
7 lines
103 B
Kotlin
7 lines
103 B
Kotlin
class A(
|
|
val i : Int,
|
|
val j : Int = i
|
|
)
|
|
|
|
fun box() = if (A(1).j == 1) "OK" else "fail"
|