[FIR IDE] Resolve explicit invoke calls more correctly

Also, enable some muted tests

^KTIJ-21343 Fixed
This commit is contained in:
Roman Golyshev
2022-03-15 11:36:54 +04:00
committed by teamcity
parent 0c4f2711d6
commit 7bcd67068c
11 changed files with 77 additions and 30 deletions
@@ -0,0 +1,7 @@
fun interface A {
operator fun invoke()
}
fun foo(param: A) {
param.invo<caret>ke()
}