blob: 9f720cf80d5aaeba1a0ca92a55ceae9080732b35 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
/*
with shadows outer variable declaration
*/
var a = 1;
with ({a: 2}) {
a++;
eval("a=100;");
WScript.Echo(a);
WScript.Echo('PASSED'); /**bp:locals(1);**/
}
WScript.Echo(a);