summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Array/regress-599159.js
blob: bd8225b529c6d1dcc46541f95e46d9787b8bc5da (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */

var b = Object.create(Array.prototype);
b.length = 12;
assertEq(b.length, 12);

reportCompare(true,true);