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

5 lines
114 B
Kotlin
Vendored

data class XYZ(val x: Int, val y: Int, val z: Int)
fun test() {
val y = XYZ(1, 2, 3)./*rename*/component2()
}