more tests for #3562 (#3565)

This commit is contained in:
Alex Lam S.L
2019-11-02 03:34:20 +08:00
committed by GitHub
parent 24bb288832
commit dcbf2236c7

View File

@@ -3370,3 +3370,33 @@ issue_3512: {
}
expect_stdout: "PASS"
}
issue_3562: {
options = {
collapse_vars: true,
reduce_vars: true,
}
input: {
var a = "PASS";
function f(b) {
f = function() {
console.log(b);
};
return "FAIL";
}
a = f(a);
f(a);
}
expect: {
var a = "PASS";
function f(b) {
f = function() {
console.log(b);
};
return "FAIL";
}
a = f(a);
f(a);
}
expect_stdout: "PASS"
}