Files
kotlin-fork/compiler/testData/codegen/box/invokedynamic/sam/functionRefToJavaInterface/boundLocalExtFun.kt
T
2021-02-19 12:04:30 +03:00

16 lines
311 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// JVM_TARGET: 1.8
// SAM_CONVERSIONS: INDY
// FILE: boundLocalExtFun.kt
fun box(): String {
fun String.k(s: String) = this + s + "K"
return Sam("O"::k).get("")
// NB simply '::k' is a compilation error
}
// FILE: Sam.java
public interface Sam {
String get(String s);
}