michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* michael@0: * Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/licenses/publicdomain/ michael@0: */ michael@0: michael@0: var f = function(){}; michael@0: for (var y in f); michael@0: f.j = 0; michael@0: Object.defineProperty(f, "k", ({configurable: true})); michael@0: delete f.j; michael@0: Object.defineProperty(f, "k", ({get: function() {}})); michael@0: michael@0: reportCompare(0, 0, "ok");