blob: 7e271c34bd239d61738c98c70148db11f813cb27 [file] [log] [blame]
function TestCase(n, d) {}
function reportCompare() {
new TestCase;
}
Object.defineProperty(Object.prototype, "name", {});
reportCompare();
try {
function TestCase( n, d ) {
this.name = n;
this.description = d;
}
reportCompare();
reportCompare();
} catch(exc3) { assertEq(0, 1); }