blob: b4a136d349a8bc82ed6876e0a0cf9411d9d603d8 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
var x = { z: 0 };
function test(param)
{
with (x)
{
z = function blah()
{
return param;
}
}
}
test("test1");
WScript.Echo(x.z());
test("test2");
WScript.Echo(x.z());