Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
codegen
/
box
/
callableReference
/
starProjectionCallableReference.kt
blob: 04d8daec866bf1d561b3ab478041d1ca07f1ec8e [
file
]
// WITH_STDLIB
// ISSUE: KT-70625
// DUMP_IR
fun
<
T
>
mutate
(
x
:
MutableList
<
T
>):
MutableList
<
T
>
{
return
x
}
fun box
():
String
{
val x
:
MutableList
<*>
=
mutableListOf
(
1
)
x
.
also
(::
mutate
)
return
"OK"
}