JVM_IR indy-SAM: function reference to Java interface

This commit is contained in:
Dmitry Petrov
2021-02-18 13:57:40 +03:00
parent 357a7907a3
commit c629ba5a3c
39 changed files with 1005 additions and 135 deletions
@@ -0,0 +1,13 @@
// TARGET_BACKEND: JVM
// JVM_TARGET: 1.8
// SAM_CONVERSIONS: INDY
// FILE: genericSam2.kt
fun <FT, FR> test(lambda: (FT) -> FR) = Sam(lambda)
fun box(): String = test<String, String> { "O" + it }.get("K")
// FILE: Sam.java
public interface Sam<T, R> {
R get(T x);
}