JVM_IR indy-SAM: function reference to Java interface
This commit is contained in:
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
// TARGET_BACKEND: JVM
|
||||
// JVM_TARGET: 1.8
|
||||
// SAM_CONVERSIONS: INDY
|
||||
// FILE: localFunction2.kt
|
||||
fun box(): String {
|
||||
val t = "O"
|
||||
fun ok() = t + "K"
|
||||
return Sam(::ok).get()
|
||||
}
|
||||
|
||||
// FILE: Sam.java
|
||||
public interface Sam {
|
||||
String get();
|
||||
}
|
||||
Reference in New Issue
Block a user