Files
kotlin-fork/idea/testData/intentions/joinDeclarationAndAssignment/propertyReassignment.kt.after
T

8 lines
113 B
Plaintext
Vendored

class C {
var s<selection>: Int</selection><caret> = 1
init {
s.hashCode()
s = 2
}
}