blob: c9e4cc0ca91c4a2a9d9b8d1f05ca5485c140db65 [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 bar(x)
{
if (x != x)
{
return;
}
}
function foo()
{
bar(typeof arguments[0]);
};
foo();
foo();
foo();
WScript.Echo("Passed");