blob: 268e1d23c97e58fb927fe25bb44e7009f5fde49d [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 arr;
function test(param)
{
var x;
arr = [ 1, (x = function() { return param; }), 2];
}
test("test1");
WScript.Echo(arr[1]());
test("test2");
WScript.Echo(arr[1]());