Change Signature: Process Kotlin-side calls of Java methods overriding Kotlin declarations
This commit is contained in:
+7
@@ -4,4 +4,11 @@ open class A {
|
||||
|
||||
class B: A() {
|
||||
override fun foo(n: Int, s: String, o: Any?): String = ""
|
||||
}
|
||||
|
||||
fun test() {
|
||||
A().foo(1, "abc", "def")
|
||||
B().foo(2, "abc", "def")
|
||||
X().foo(3, "abc", "def")
|
||||
Y().foo(4, "abc", "def")
|
||||
}
|
||||
Reference in New Issue
Block a user