Remove generated black box java codegen test

Move all testData to boxWithJava/
This commit is contained in:
Alexander Udalov
2013-01-27 20:46:26 +04:00
committed by Alexander Udalov
parent 86938f57b1
commit 2904d1745b
38 changed files with 125 additions and 235 deletions
@@ -0,0 +1,12 @@
open class A : funNotDirectSuperClass() {}
class Derived(): A() {
fun test(): String {
return funNotDirectSuperClass.protectedFun()!!
}
}
fun box(): String {
return Derived().test()
}