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

8 lines
156 B
Kotlin
Vendored

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