Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
a94a6dc085d3d1f1010ea8bbc9d8754c3aa02b35
/
.
/
compiler
/
testData
/
codegen
/
boxJvm
/
sam
/
extensionLambdaWithJavaSamParameter.kt
blob: ba858af2a967c14faa22bae2ff6373c799f24002 [
file
]
// TARGET_BACKEND: JVM
// 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
{}