Files
kotlin-fork/idea/testData/inspectionsLocal/selfAssignment/withReceiver.kt
T
2017-11-02 11:07:52 +03:00

7 lines
111 B
Kotlin
Vendored

// PROBLEM: none
class Point(var x: Int) {
fun copyFrom(other: Point) {
x = <caret>other.x
}
}