michael@0: // |jit-test| error:out of memory michael@0: michael@0: gcPreserveCode(); michael@0: evaluate("gcparam(\"maxBytes\", gcparam(\"gcBytes\") + 4*1024);"); michael@0: evaluate("\ michael@0: function testDontEnum(F) { \ michael@0: function test() {\ michael@0: var upvar = \"\";\ michael@0: function f() { upvar += \"\"; }\ michael@0: typeof (new test(\"1\")) != 'function'\ michael@0: }\ michael@0: test();\ michael@0: } \ michael@0: var list = [];\ michael@0: for (i in list)\ michael@0: var F = this[list[i]];\ michael@0: actual = testDontEnum(F);\ michael@0: ");