comparison: js/src/jit-test/tests/ion/bug692211.js
js/src/jit-test/tests/ion/bug692211.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 // |jit-test| error: TypeError |
|
2 function TimeFunc(func) { |
|
3 for(var y=0; y<256; y++) func(y); |
|
4 } |
|
5 function nestedExit2() { |
|
6 TimeFunc(TimeFunc); |
|
7 } |
|
8 assertEq(nestedExit2(), "ok"); |