Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inference
/
kt36044.kt
blob: c464dcbbd89ef9cf725cf36908b8dff689192d15 [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
// !DIAGNOSTICS: -UNUSED_PARAMETER
// Issue: KT-36044
fun
<
A
>
select
(
x
:
A
,
f
:
()
->
A
)
=
f
()
fun
<
B
>
map
(
f
:
()
->
B
)
=
f
()
fun main
()
{
select
(
'a'
,
map
{
{
""
}
})
}