blob: 6e6f51777312546a565135d1245251cb93aa30c0 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
// Verification for bug 177146
function F1(a) {
F2(a, " World");
}
F1("Hello");
function F2(a,b) {
arguments.callee.caller.arguments[0] += b;
b; /**bp:setFrame(1);locals(1)**/
}
WScript.Echo("Pass");