Files
kotlin-fork/idea/testData/intentions/iterationOverMap/DataClassWithLocalPropertyModified.kt
T
2016-05-18 19:56:14 +03:00

13 lines
241 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
data class XY(val x: String, val y: Int)
fun test(xys: Array<XY>) {
for (<caret>xy in xys) {
val x = xy.x
var y = xy.y
println(x + y)
y--
println(y)
}
}