js/src/jit-test/tests/basic/bug980013.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:b3395d9bfce1
1
2 x = new Uint8ClampedArray;
3 x.__proto__ = {};
4 Object.defineProperty(this, "y", {
5 get: function() {
6 return x.length;
7 }
8 });
9 assertEq(y, undefined);

mercurial