blob: 3ca01cb362341b979d95125dd7a4599ad67a3fc3 [file] [log] [blame]
// vim: set ts=8 sts=4 et sw=4 tw=99:
function F() {
var T = { };
try {
throw 12;
} catch (e) {
T.x = 5;
return T;
}
}
assertEq((new F()).x, 5);