Revert ""Add parameter to function" for TYPE_MISMATCH: fix it works correctly for extension function"

This reverts commit 03e725d5
This commit is contained in:
Yan Zhulanow
2020-10-24 00:19:44 +09:00
parent 16dbf7ba74
commit c4a48598c0
12 changed files with 9 additions and 23 deletions
@@ -1,8 +0,0 @@
// "Add 2nd parameter to function 'bar'" "true"
interface Foo
private fun Foo.bar(s: String, i: Int) {}
fun test(foo: Foo, b: Boolean) {
foo.bar("", b<caret>, 0)
}
@@ -1,8 +0,0 @@
// "Add 2nd parameter to function 'bar'" "true"
interface Foo
private fun Foo.bar(s: String, b: Boolean, i: Int) {}
fun test(foo: Foo, b: Boolean) {
foo.bar("", b, 0)
}
@@ -1,4 +1,5 @@
// "Add 1st parameter to function 'foo'" "true"
// DISABLE-ERRORS
fun foo(i1: Int, i2: Int, i3: Int, i4: Int) {
}
@@ -1,4 +1,5 @@
// "Add 1st parameter to function 'foo'" "true"
// DISABLE-ERRORS
fun foo(i11: String, i1: Int, i2: Int, i3: Int, i4: Int) {
}
@@ -1,4 +1,5 @@
// "Add 2nd parameter to function 'foo'" "true"
// DISABLE-ERRORS
fun foo(i1: Int, i2: Int, i3: Int, i4: Int) {
}
@@ -1,4 +1,5 @@
// "Add 2nd parameter to function 'foo'" "true"
// DISABLE-ERRORS
fun foo(i1: Int, i21: String, i2: Int, i3: Int, i4: Int) {
}
@@ -1,4 +1,5 @@
// "Add 3rd parameter to function 'foo'" "true"
// DISABLE-ERRORS
fun foo(i1: Int, i2: Int, i3: Int, i4: Int) {
}
@@ -1,4 +1,5 @@
// "Add 3rd parameter to function 'foo'" "true"
// DISABLE-ERRORS
fun foo(i1: Int, i2: Int, i31: String, i3: Int, i4: Int) {
}
@@ -1,4 +1,5 @@
// "Add 4th parameter to function 'foo'" "true"
// DISABLE-ERRORS
fun foo(i1: Int, i2: Int, i3: Int, i4: Int) {
}
@@ -1,4 +1,5 @@
// "Add 4th parameter to function 'foo'" "true"
// DISABLE-ERRORS
fun foo(i1: Int, i2: Int, i3: Int, i41: String, i4: Int) {
}