blob: 40f2c63bd2aaed37bbe4d8d78c7d3086b47a09df [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.
//-------------------------------------------------------------------------------------------------------
var x = 10;
function f() {
const x = 5;
{
const x = "abacaba";
WScript.Echo(x);
{
const x = 111111;
WScript.Echo(x);
}
WScript.Echo(x);
{
const x = 222222;
WScript.Echo(x);
}
WScript.Echo(x);
}
WScript.Echo(x);
};
f();
WScript.Echo(x);