Files
kotlin-fork/idea/testData/refactoring/rename/dataClassCopy/after/test.kt
T
2018-03-06 15:15:44 +03:00

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)
}