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