blob: a267d9ea34e797cd83b56a649e1f6a4f94ddb0b2 [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.
//-------------------------------------------------------------------------------------------------------
// blue 238991
var g_n = 0;
function test() {
var f = new Function("return " + g_n++);
f();
/**bp:locals()**/
}
WScript.Attach(test);
WScript.Detach(test);
WScript.Echo("pass");