Bugs #12, #8
[KiwiIRC.git] / node / node_modules / uglify-js / test / unit / compress / test / issue50.js
1 function bar(a) {
2 try {
3 foo();
4 } catch(e) {
5 alert("Exception caught (foo not defined)");
6 }
7 alert(a); // 10 in FF, "[object Error]" in IE
8 }
9 bar(10);