Add invoke reference resolve test without errors in test data

This commit is contained in:
Ilya Kirillov
2020-07-06 17:23:04 +03:00
parent 15ecfd84b4
commit 4c08dfb238
12 changed files with 113 additions and 18 deletions
@@ -1,11 +1,9 @@
// IGNORE_FIR
class Foo {
fun invoke(vararg a: Any) {}
operator fun invoke(a: Any) {}
}
fun test(f: Foo) {
f f@ <caret>{}
}
// REF: (in Foo).invoke(vararg Any)
// REF: (in Foo).invoke(Any)