blob: dd3422c7ab61c7499f3b31df962f5ef77ea862b5 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
// bug : 355097, functional issue when the forcedeferparse of the let vars.
function Run(){
function foo() {
let a = "a";
function bar() {}
a; /**bp:evaluate('a')**/
}
foo();
};
Run();
WScript.Attach(Run);
WScript.Echo("Pass");