Files
kotlin-fork/idea/testData/quickfix/variables/changeToPropertyAccess/propertyCall.kt
T

7 lines
105 B
Kotlin
Vendored

// "Change to property access" "true"
class A(val ff: String)
fun x() {
val y = A("").f<caret>f()
}