blob: d598983aa8685a0b95042847e2786078d7c429fe [file]
//-------------------------------------------------------------------------------------------------------
// 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]());