michael@0: // Any copyright is dedicated to the Public Domain. michael@0: // http://creativecommons.org/licenses/publicdomain/ michael@0: // Contributor: Jason Orendorff michael@0: michael@0: var x = {}; michael@0: for (var i = 0; i < 2; i++) { michael@0: Object.defineProperty(x, "y", {configurable: true, value: function () {}}); michael@0: x.y(); michael@0: } michael@0: reportCompare(0, 0, "ok");