summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/regress/regress-592202-4.js
blob: 74252805654dad56e28947d04d15934c8d7be9dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */

function p() { }

function test()
{
  var counter = 0;

  function f(x) {
      try
      { 
        throw 42;
      }
      catch(e)
      { 
        assertEq(counter, 0);
        p(function(){x;});
        counter = 1;
      }
  }

  f(2);
  assertEq(counter, 1);
}

test();

reportCompare(0, 0, "ok");