js/src/tests/js1_8_5/regress/regress-593256.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/js1_8_5/regress/regress-593256.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,21 @@
     1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     1.5 +/*
     1.6 + * Any copyright is dedicated to the Public Domain.
     1.7 + * http://creativecommons.org/licenses/publicdomain/
     1.8 + */
     1.9 +
    1.10 +eval("\
    1.11 +  (function(){for(d in[0,Number]) {\
    1.12 +    this.__defineGetter__(\"\",function(){}),\
    1.13 +    [(this.__defineGetter__(\"x\",Math.pow))]\
    1.14 +  }})\
    1.15 +")()
    1.16 +delete gc
    1.17 +eval("\
    1.18 +  (function() {\
    1.19 +    for(e in this.__defineSetter__(\"x\",function(){})){}\
    1.20 +  })\
    1.21 +")()
    1.22 +delete gc
    1.23 +
    1.24 +reportCompare(true, true, "don't crash");

mercurial