blob: fc7f6b1bbbb857a80ebb21d52be64f5ec9eacda3 [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 func(x, f)
{
WScript.Echo(f());
}
function test(param)
{
var call_escape = function()
{
return param;
}
func(1, call_escape);
}
test("test1");
test("test2");