blob: d9a8058eb88ac2ad666d633c9c7f7b4ad6c63be8 [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 = new Array;
a[1] = 100;
function func2()
{
// Injected bailout point: test constant as an array index, which doesn't get copy prop'd
return a[1];
}
WScript.Echo(func2());