Files
kotlin-fork/analysis/analysis-api/testData/referenceResolve/explicitFunctionalInterfaceInvoke_parameter.kt
Roman Golyshev 7bcd67068c [FIR IDE] Resolve explicit invoke calls more correctly
Also, enable some muted tests

^KTIJ-21343 Fixed
2022-03-15 21:29:36 +03:00

7 lines
94 B
Kotlin
Vendored

fun interface A {
operator fun invoke()
}
fun foo(param: A) {
param.invo<caret>ke()
}