JVM_IR indy-SAM: function reference to Java interface
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
// TARGET_BACKEND: JVM
|
||||
// JVM_TARGET: 1.8
|
||||
// SAM_CONVERSIONS: INDY
|
||||
// FILE: genericSam1.kt
|
||||
|
||||
fun box(): String = Sam<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