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

6 lines
72 B
Kotlin
Vendored

fun foo() {
var s<caret>: Int
s = 1
s.hashCode()
s = 2
}