summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/regress/regress-560998-2.js
blob: 24491a1be7b16e95b993340a8157ba968302dac4 (plain)
1
2
3
4
5
6
7
8
9
10
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/
// Contributor: Jason Orendorff <jorendorff@mozilla.com>

var x = {};
for (var i = 0; i < 2; i++) {
    Object.defineProperty(x, "y", {configurable: true, value: function () {}});
    x.y();
}
reportCompare(0, 0, "ok");