Remove redundant spread operator: don't report if overloaded functions cannot be resolved

#KT-38282 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-04-21 17:29:49 +09:00
committed by Dmitry Gridin
parent f179b39c70
commit 0a230905ae
6 changed files with 58 additions and 0 deletions
@@ -0,0 +1,8 @@
// PROBLEM: none
fun foo(vararg args: Int) {}
fun foo(vararg args: Double) {}
fun test() {
foo(<caret>*intArrayOf())
}