Files
kotlin/compiler/testData/codegen/boxWithJava/reflection/functionReferenceErasedToKFunction.kt
Alexander Udalov daab3db062 Add WITH_RUNTIME and WITH_REFLECT directives to box tests
Currently all tests in boxWithStdlib/ run with both runtime and reflection
included; eventually they'll be merged into box/ using these directives
2016-03-03 16:11:21 +03:00

30 lines
518 B
Kotlin
Vendored

// 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()
}