summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug673705-2.js
blob: 28076f9c464b32f11dbe837777bc4029cd61f134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function bug673705() {
  var x;
  try {
    try {
    } catch (e) {
    }
  } finally {
  }
  print(x);
  return x;
}
assertEq(bug673705(), undefined);