Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
inference
/
callableReferenceOnParameter.fir.kt
blob: 35a458694cbb411496e8a96d9585dc3ac47cb997 [
file
]
// Issue: KT-37736
internal
class
Z
<
K
>
{
val map
=
HashMap
<
String
,
String
>()
inline
fun compute
(
key
:
String
,
producer
:
()
->
String
):
String
{
return
map
.<!
INAPPLICABLE_CANDIDATE
!>
getOrPut
<!>(
key
,
::<!
UNSUPPORTED
!>
producer
<!>)
}
}