blob: 53ffb40793634fdbae22845f5ff8423aa5c2f4bc [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.
//-------------------------------------------------------------------------------------------------------
function test(param)
{
var l = param;
param = function() { return l; }
return arguments;
}
WScript.Echo(test("test1")[0]());
WScript.Echo(test("test2")[0]());