FIR: Fix resolution for invokes on class qualifiers

This commit is contained in:
Denis Zharkov
2020-03-30 13:04:00 +03:00
parent 10531d2874
commit 9abe669443
24 changed files with 173 additions and 104 deletions
@@ -0,0 +1,7 @@
object Bar {
operator fun invoke(x: String) {}
}
fun foo() {
Bar("asd")
}