blob: 04f3a00d61342956e19e6d3785e7a97f8ffb51d8 [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
var a = [];
a[4294967294] = 8;
try
{
a.splice(4294967295,0,1); //length grows by 1
}
catch(e)
{
WScript.Echo("PASS");
}