// EXPECTED_REACHABLE_NODES: 1280 package foo fun box(): String { val a = "bar"; var b = "foo"; b = a; return if (b == "bar") "OK" else "fail" }