blob: ed1353d06bb8c3896e1c90c17dd88629eebe669d [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.
//-------------------------------------------------------------------------------------------------------
var o = {}
function test()
{
var i = 0;
function simple_stackfunc() // this can be stack allocated
{
if (i == 0)
{
i++;
return simple_stackfunc();
}
return i;
}
return simple_stackfunc();
}
WScript.Echo(test());
WScript.Echo(test());