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

12 lines
165 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun bar() {
var x: <caret>String
fun foo() {
x = "456"
x.hashCode()
}
foo()
x = "123"
x.hashCode()
}