more tests for #3562

This commit is contained in:
alexlamsl 2019-11-02 00:41:09 +08:00
parent 24bb288832
commit 96435e6549

View File

@ -3370,3 +3370,33 @@ issue_3512: {
} }
expect_stdout: "PASS" 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"
}