blob: 38b5ea4b04e166ff0808d2b932b5a0aae4f89333 [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()
{
var i = 0;
// This only create one function assignment. The name f1 is only available inside the function
// via LdFuncExpr
var f = function f1()
{
if (i == 0)
{
i++;
return f1();
}
return i;
}
return f();
}
WScript.Echo(test());
WScript.Echo(test());