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 {}