8 lines
156 B
Kotlin
Vendored
8 lines
156 B
Kotlin
Vendored
// "Create member property 'foo'" "true"
|
|
// ERROR: Property must be initialized or be abstract
|
|
|
|
class A
|
|
|
|
fun test() {
|
|
println("a = ${A().<caret>foo}")
|
|
} |