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

14 lines
277 B
Kotlin
Vendored

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