comparison: js/src/jit-test/tests/jaeger/bug643913.js
js/src/jit-test/tests/jaeger/bug643913.js
- changeset 0
- 6474c204b198
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(); |