blob: c8c090cf75f8cab5c5a80ba94608f1d9bf3eaaa4 [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 x_min() {
if (arguments.length < 3) {
if (arguments[0] < arguments[1]) return arguments[0];
else return arguments[1];
}
return 1;
}
function test0() {
x_min(15,2);
}
for (var i = 0; i < 100; i++) {
test0();
}
WScript.Echo("pass");