Change Signature: Add test for KT-4013 "'Change signature' does not add necessary imports"

#KT-4013 Fixed
This commit is contained in:
Alexey Sedunov
2015-02-20 16:36:29 +03:00
parent 8e2b0875c2
commit a21163b8c4
5 changed files with 36 additions and 0 deletions
@@ -0,0 +1,11 @@
// "Add parameter to function 'foo'" "true"
// ERROR: Too many arguments for internal fun foo(): kotlin.Unit defined in b
package a
import b.foo
class Bar
fun test() {
foo(<caret>Bar())
}