fix corner case in inline (#5527)

fixes #5526
This commit is contained in:
Alex Lam S.L
2022-06-26 13:48:14 +01:00
committed by GitHub
parent fcc87edb71
commit f1b3e9df1e
11 changed files with 72 additions and 11 deletions

View File

@@ -1930,6 +1930,7 @@ issue_5057_4: {
var b = "FAIL 2";
(function(a = console.log("FAIL 1")) {})(b);
console.log(a);
0;
})("PASS");
}
expect_stdout: "PASS"