59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
9 lines
164 B
Kotlin
9 lines
164 B
Kotlin
class A(nested: A.Nested = A.Nested(A.Nested.FIELD)) {
|
|
|
|
class Nested(p: Int) {
|
|
default object {
|
|
|
|
public val FIELD: Int = 0
|
|
}
|
|
}
|
|
} |