summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug706808.js
blob: 8bbba9d98aea8d0608951e37451554d257606aa4 (plain)
1
2
3
4
5
Object.defineProperty(Object.prototype, "a", {});
function t2(b) { this.a = b; }
var x = new t2(3);
assertEq(x.a, undefined);