bug652646.js (118B)
1 function foo() { 2 try { 3 return 0; 4 } catch (e) { 5 try { 6 return 1; 7 } catch (e) { 8 } 9 } 10 } 11 foo();