59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
14 lines
202 B
Kotlin
14 lines
202 B
Kotlin
// "Create property 'foo'" "true"
|
|
// ERROR: Property must be initialized or be abstract
|
|
|
|
class A<T>(val n: T) {
|
|
default object {
|
|
val foo: Int
|
|
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
val a: Int = A.foo
|
|
}
|