sharedListOf

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

Deprecated (with error)

Will be dropped with new memory model enabled by default

Replace with

mutableListOf(values)