Added load java test with deep Java-Kotlin subclassing.

This commit is contained in:
Evgeny Gerashchenko
2013-01-14 22:36:48 +04:00
parent 8d9acc2662
commit 21fa647983
8 changed files with 76 additions and 1 deletions
@@ -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 = ""
}