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

9 lines
100 B
Kotlin
Vendored

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