Files
kotlin-fork/compiler/testData/ir/irText/firProblems/kt19251.kt
T
2021-02-11 11:48:34 +03:00

15 lines
261 B
Kotlin
Vendored

// WITH_RUNTIME
// FULL_JDK
// FILE: Fun.java
public interface Fun {
String invoke(String string);
}
// FILE: test.kt
fun box(): String {
val map = mutableMapOf<Fun, String>()
val fn = Fun { TODO() }
return map.computeIfAbsent(fn, { "OK" })
}