Moved javaAgainstKotlin cases to generated test.

This commit is contained in:
Evgeny Gerashchenko
2013-03-07 15:52:24 +04:00
parent a0b780c7bb
commit d76de90931
20 changed files with 82 additions and 25 deletions

View File

@@ -0,0 +1,5 @@
package test
public open class A {
public open fun foo(): String = ""
}

View File

@@ -0,0 +1,7 @@
package test;
public class B extends A {
public String foo() {
return "";
}
}

View File

@@ -0,0 +1,5 @@
package test
public open class C: B() {
override fun foo(): String = ""
}

View File

@@ -0,0 +1,7 @@
package test;
public class D extends C {
public String foo() {
return "";
}
}

View File

@@ -0,0 +1,5 @@
package test
public open class E: D() {
override fun foo(): String = ""
}

View File

@@ -0,0 +1,7 @@
package test;
public class F extends E {
public String foo() {
return "";
}
}