Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
boxJvm
/
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
{}