JVM_IR indy-SAM: function reference to Java interface
This commit is contained in:
+13
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user