41d51e0a13
#KT-6083 Fixed
10 lines
166 B
Kotlin
10 lines
166 B
Kotlin
// "Create property 'foo'" "true"
|
|
// ERROR: Property must be initialized or be abstract
|
|
|
|
class A {
|
|
val foo: String
|
|
}
|
|
|
|
fun test() {
|
|
println("a = ${A().foo}")
|
|
} |