js/src/tests/ecma_5/misc/redeclare-var-non-writable-property.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:a725a5291da3
1 /*
2 * Any copyright is dedicated to the Public Domain.
3 * http://creativecommons.org/licenses/publicdomain/
4 */
5
6 //-----------------------------------------------------------------------------
7 var BUGNUMBER = 539488;
8 var summary =
9 '|var| statements for existing, read-only/permanent properties should not ' +
10 'be errors';
11
12 print(BUGNUMBER + ": " + summary);
13
14 /**************
15 * BEGIN TEST *
16 **************/
17
18 var undefined;
19
20 /******************************************************************************/
21
22 reportCompare(true, true);
23
24 print("All tests passed!");

mercurial