blob: a952502d8211d040c8c4cc03fd56a037724f8576 [file] [log] [blame]
/* Don't crash. */
function f() {
var x;
x.a;
x = {};
}
try {
f();
assertEq(0, 1);
} catch(e) {
}