7 lines
145 B
Kotlin
Vendored
7 lines
145 B
Kotlin
Vendored
// "Create property 'foo'" "true"
|
|
// ERROR: Property must be initialized or be abstract
|
|
class A {
|
|
fun test() {
|
|
<caret>foo = 1
|
|
}
|
|
} |