Files
kotlin/compiler/testData/codegen/box/dataClasses/copy/withSecondaryConstructor.kt
2018-06-21 13:27:17 +03:00

10 lines
157 B
Kotlin
Vendored

data class A(val o: String, val k: String) {
constructor() : this("O", "k")
}
fun box(): String {
val a = A().copy(k = "K")
return a.o + a.k
}