Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
sam
/
extensionLambdaWithJavaSamParameter.kt
blob: 8df3ba978d8e2abad003008c7f205dba6f842168 [
file
]
// TARGET_BACKEND: JVM
// IGNORE_BACKEND_K1: JVM_IR
// FILE: Action.java
public
interface
Action
<
T
>
{
void
execute
(
T t
);
}
// FILE: box.kt
val artifactsGetter
:
String
.(
Action
<
Int
>)
->
String
=
{
"OK"
}
fun box
():
String
=
"Test"
.
artifactsGetter
{}