Files
kotlin-fork/analysis/analysis-api/testData/components/callResolver/resolveCall/variableWithInvokeFunctionCall_dispatchReceiver.kt
T

8 lines
108 B
Kotlin
Vendored

operator fun Int.invoke() {}
class A {
val f: Int = 1
fun test() {
<expr>f()</expr>
}
}