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

11 lines
145 B
Kotlin
Vendored

// PROBLEM: none
// SKIP_ERRORS_BEFORE
// SKIP_ERRORS_AFTER
class Point {
val x: Int
constructor(x: Int) {
x = <caret>x
}
}