Add Safe Delete tests for extension functions and properties
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
package test;
|
||||
|
||||
class B {
|
||||
void bar(A a) {
|
||||
TestPackage.foo(a, 1, "1", "!");
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package test;
|
||||
|
||||
class B {
|
||||
void bar(A a) {
|
||||
TestPackage.foo(a, "1", "!");
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package test
|
||||
|
||||
class A {
|
||||
|
||||
}
|
||||
|
||||
fun A.foo(<caret>a: Int, b: String, c: Any) {
|
||||
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package test
|
||||
|
||||
class A {
|
||||
|
||||
}
|
||||
|
||||
fun A.foo(b: String, c: Any) {
|
||||
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package test;
|
||||
|
||||
class B {
|
||||
void bar(A a) {
|
||||
TestPackage.foo(a, 1, "1", "!");
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package test;
|
||||
|
||||
class B {
|
||||
void bar(A a) {
|
||||
TestPackage.foo(a, 1, "!");
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package test
|
||||
|
||||
class A {
|
||||
|
||||
}
|
||||
|
||||
fun A.foo(a: Int, <caret>b: String, c: Any) {
|
||||
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package test
|
||||
|
||||
class A {
|
||||
|
||||
}
|
||||
|
||||
fun A.foo(a: Int, c: Any) {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user