I have this class in common code ```data class Pa...
# multiplatform
h
I have this class in common code
Copy code
data class PayloadHolder<out T>(
    val payload: T? = null
)
when i try to do
val payloadHolder = PayloadHolder("").copy("newString")
it fails for iOS with
error: Unresolved reference 'copy'
when using Kotlin 2.1.0-Beta2, but it works for JVM 🤔 it worked just fine with Kotlin 2.1.0-Beta1