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

8 lines
221 B
Kotlin
Vendored

// "Change to property access" "false"
// ERROR: Expression 'fd' of type 'String' cannot be invoked as a function. The function 'invoke()' is not found
class A(val fd: String)
fun x() {
val y = A("").f<caret>d("")
}