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