blob: 3d5b60a20a257172261d729bde325b46cdc1cf11 [file]
// WITH_STDLIB
// IGNORE_BACKEND_K1: WASM
// 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"
}