disable reminify()

fix-up for #2708
This commit is contained in:
alexlamsl
2018-01-07 20:56:36 +08:00
parent 7a8eff62ca
commit 4b1799ecdd
5 changed files with 15 additions and 4 deletions

View File

@@ -1516,7 +1516,8 @@ issue_2647_2: {
}
expect: {
(function() {
console.log("pass".toUpperCase());
console.log((() => (x = "pass", x.toUpperCase()))());
var x;
})();
}
expect_stdout: "PASS"