8 lines
221 B
Kotlin
Vendored
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("")
|
|
}
|