comparison: js/src/jit-test/tests/basic/bug852016.js
js/src/jit-test/tests/basic/bug852016.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 //|jit-test| error: SyntaxError |
|
2 |
|
3 (function() { |
|
4 x = "arguments"; |
|
5 f = eval("(function(){return(c for (x in eval('print(arguments[0])')))})"); |
|
6 for (e in f()) { |
|
7 (function() {}); |
|
8 } |
|
9 })(3) |