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): String = ""
|
||||
}
|
||||
|
||||
fun test() {
|
||||
A().foo(1)
|
||||
B().foo(2)
|
||||
X().foo(3)
|
||||
Y().foo(4)
|
||||
}
|
||||
Reference in New Issue
Block a user