blob: 6bebc8063c840f3a9a42f3d44058df50e9db539e [file] [log] [blame]
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/
var global = this;
(function() {
function f() {
this.b = function() {};
Object.defineProperty(this, "b", ({
configurable: global.__defineSetter__("", function() {})
}));
}
for (y of [0]) {
_ = new f();
}
})();
uneval(this);
reportCompare(true, true);