blob: e020fcf85b40070a0d325295ab44a75bc6c5d426 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
// Validating dynamic-attach on function which declares arguments as a params (204064)
function test() {
function foo(arguments) {
eval('arguments'); /**bp:locals()**/
}
foo("11");
WScript.Echo("Pass");
}
WScript.Attach(test);