comparison: js/src/jit-test/tests/jaeger/bug643913.js
js/src/jit-test/tests/jaeger/bug643913.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 function f() { |
|
2 var x; |
|
3 eval("x = 3.14"); |
|
4 x = 123; |
|
5 var y = -(-x); |
|
6 assertEq(y, 123); |
|
7 } |
|
8 f(); |