blob: 060f9df82fb98680567edae7e53849c06b9ce536 [file] [log] [blame]
function bar(a) {
try {
foo();
} catch(e) {
alert("Exception caught (foo not defined)");
}
alert(a); // 10 in FF, "[object Error]" in IE
}
bar(10);