update test

Sub-optimal result due to block scope.
This commit is contained in:
alexlamsl
2017-10-22 00:38:16 +08:00
parent c60fa67827
commit 9f1c72ae28

View File

@@ -1190,10 +1190,10 @@ defun_label: {
!function() { !function() {
console.log(function(a) { console.log(function(a) {
L: { L: {
if (2) break L; if (a) break L;
return 1; return 1;
} }
}()); }(2));
}(); }();
} }
expect_stdout: true expect_stdout: true