blob: 48174dc95bff6405c48d779e9723ff10c298f91a [file]
// Issue: KT-37736
internal class Z<K> {
val map = HashMap<String, String>()
inline fun compute(key: String, producer: () -> String): String {
return map.getOrPut(key, ::<!UNSUPPORTED!>producer<!>)
}
}