blob: 1af3950947df41e06131f41eb9300d7de664dbb3 [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.
//-------------------------------------------------------------------------------------------------------
function foo(a, b = (function() {a;})())
{
for (var ii = 0; ii < 200; ++ii)
{
var c, d = null;
function bar()
{
c;
d;
};
bar();
}
};
foo();
WScript.Echo("Pass")