JS: move more test to box tests

This commit is contained in:
Alexey Andreev
2016-08-30 15:31:53 +03:00
parent 3801052460
commit 34bf3e6e56
196 changed files with 1162 additions and 1293 deletions
@@ -0,0 +1,25 @@
package foo
interface A {
fun addFoo(s: String): String {
return s + "K"
}
}
interface B {
fun hooray(): String {
return "O"
}
}
interface AD : A, B {
}
class Test() : AD {
fun eval(): String {
return addFoo(hooray());
}
}
fun box() = Test().eval()