Merge boxWithJava testData into box, delete BoxWithJava test

This commit is contained in:
Alexander Udalov
2016-03-07 16:54:45 +03:00
committed by Alexander Udalov
parent 16a0ddd2fb
commit f8dfaf4599
117 changed files with 723 additions and 815 deletions
@@ -0,0 +1,29 @@
// WITH_REFLECT
// FILE: J.java
import kotlin.jvm.functions.Function2;
import kotlin.reflect.KFunction;
public class J {
public static String go() {
KFunction<String> fun = K.Companion.getRef();
Object result = ((Function2) fun).invoke(new K(), "KO");
return (String) result;
}
}
// FILE: K.kt
class K {
fun reverse(s: String): String {
return s.reversed()
}
companion object {
fun getRef() = K::reverse
}
}
fun box(): String {
return J.go()
}