comparison: js/src/jit-test/tests/auto-regress/bug684281.js
js/src/jit-test/tests/auto-regress/bug684281.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 // Binary: cache/js-dbg-64-fcca99426576-linux |
|
2 // Flags: -m -n -a |
|
3 // |
|
4 |
|
5 function printStatus (msg) {} |
|
6 F = function () {}; |
|
7 F.prototype = new Int32Array(1); |
|
8 o = new F(); |
|
9 function f2(o){ |
|
10 with(this) |
|
11 for(var x in o) |
|
12 printStatus(o[x]); |
|
13 } |
|
14 f2([]); |