FIR IDE: resolve implicit invoke to callable property

This commit is contained in:
Tianyu Geng
2021-10-15 10:01:25 -07:00
committed by Space
parent b27b202c28
commit 0d966ec65a
8 changed files with 59 additions and 7 deletions
@@ -0,0 +1,6 @@
fun interface A {
operator fun invoke()
}
fun foo(a: A) {
<caret>a()
}