Files
kotlin-fork/compiler/testData/codegen/box/invokedynamic/sam/samExtFunWithCapturingLambda.kt
T

20 lines
372 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// JVM_TARGET: 1.8
// SAM_CONVERSIONS: INDY
// CHECK_BYTECODE_TEXT
// JVM_IR_TEMPLATES
// 1 java/lang/invoke/LambdaMetafactory
fun interface IExtFun {
fun String.foo(s: String) : String
}
fun box(): String {
val oChar = 'O'
val iExtFun = IExtFun { this + oChar.toString() + it }
return with(iExtFun) {
"".foo("K")
}
}