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