blob: e1c0b5a8386d6b4ea054b7c3a6922a12b6258f86 [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 f(x, y) {
return new Array(x, y);
}
f(1, 2);
f(2, 3);
Array = function (x, y) { WScript.Echo('arg: ' + x + ', ' + y); }
f(3, 4);
f(5, 6);