Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/inference/callableReferenceOnParameter.fir.kt
T

8 lines
204 B
Kotlin
Vendored

// Issue: KT-37736
internal class Z<K> {
val map = HashMap<String, String>()
inline fun compute(key: String, producer: () -> String): String {
return map.getOrPut(key, ::producer)
}
}