js/src/jit-test/tests/basic/bug673705-2.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:ce836dc97ba4
1 function bug673705() {
2 var x;
3 try {
4 try {
5 } catch (e) {
6 }
7 } finally {
8 }
9 print(x);
10 return x;
11 }
12 assertEq(bug673705(), undefined);

mercurial