e145a64d50
#KT-20241 Fixed
5 lines
106 B
Kotlin
Vendored
5 lines
106 B
Kotlin
Vendored
data class XYZ(val x: Int, val y: Int, val z: Int)
|
|
|
|
fun test() {
|
|
XYZ(1, 2, 3)./*rename*/copy(x = 10)
|
|
} |