js/src/tests/js1_5/Regress/regress-326453.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:3d18995400ce
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /*
3 * Any copyright is dedicated to the Public Domain.
4 * http://creativecommons.org/licenses/publicdomain/
5 * Contributor: Blake Kaplan
6 */
7
8 //-----------------------------------------------------------------------------
9 var BUGNUMBER = 326453;
10 var summary = 'Do not assert: while decompiling';
11 var actual = 'No Crash';
12 var expect = 'No Crash';
13
14 printBugNumber(BUGNUMBER);
15 printStatus (summary);
16
17 function f() { with({})function g() { }; printStatus(); }
18
19 printStatus(f.toString());
20
21 reportCompare(expect, actual, summary);

mercurial