blob: 51cd9c5f5f1c68ce531fb3616b08c34a4878a9e4 [file] [log] [blame]
// IS_APPLICABLE: false
fun bar() {
var x: <caret>String
fun foo() {
x = "456"
x.hashCode()
}
foo()
x = "123"
x.hashCode()
}