sharedListOf

fun <T> sharedListOf(vararg values: T): MutableList<T>

Deprecated

Will be dropped with new memory model enabled by default

Replace with

mutableListOf(values)