catch-overflow-regexp.js (97B)
1 function test() { 2 try { 3 test(); 4 } catch { 5 /a/.test("a"); 6 } 7 } 8 test();