59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
18 lines
284 B
Kotlin
18 lines
284 B
Kotlin
// ERROR: Property must be initialized or be abstract
|
|
package pack
|
|
|
|
import pack.A.Nested
|
|
|
|
class A(nested: Nested = Nested(Nested.FIELD)) {
|
|
|
|
class Nested(p: Int) {
|
|
default object {
|
|
|
|
public val FIELD: Int = 0
|
|
}
|
|
}
|
|
}
|
|
|
|
class B {
|
|
var nested: Nested
|
|
} |