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

10 lines
173 B
Plaintext
Vendored

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