summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/adjacent-trycatch-second-nested.js
blob: 35767eb4022ae0b02716dc90657547c92d7ac19b (plain)
1
2
3
4
5
6
7
8
9
try { }
catch (e) { }

try { throw 2; }
catch (e)
{
  try { throw 3; }
  catch (e2) { }
}