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