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

10 lines
166 B
Plaintext

// "Create property 'foo'" "true"
// ERROR: Property must be initialized or be abstract
class A {
val foo: String
}
fun test() {
println("a = ${A().foo}")
}