js/src/jit-test/tests/jaeger/bug621522.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:0fca692db730
1
2 /* Don't crash. */
3 function f() {
4 var x;
5 x.a;
6 x = {};
7 }
8
9 try {
10 f();
11 assertEq(0, 1);
12 } catch(e) {
13
14 }

mercurial