Added load java test with deep Java-Kotlin subclassing.
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class A {
|
||||
public open fun foo(): String = ""
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class C: B() {
|
||||
override fun foo(): String = ""
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class E: D() {
|
||||
override fun foo(): String = ""
|
||||
}
|
||||
Reference in New Issue
Block a user