Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/property/afterQualifiedRefInStringTemplateRuntime.kt
T

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}")
}