59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
16 lines
201 B
Kotlin
16 lines
201 B
Kotlin
class A {
|
|
default object {
|
|
val b = 0
|
|
val c = b
|
|
|
|
{
|
|
val d = b
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
A()
|
|
return if (A.c == A.b) "OK" else "Fail"
|
|
}
|