blob: cd4de6d42bf5517524b5955be01fadb5296a8e01 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
// Tests that let/const variables display properly when leaving a dead zone in the global case.
var a = 0; /**bp:locals()**/
let b = 1; /**bp:locals()**/
const c = 2; /**bp:locals()**/
a; /**bp:locals()**/
WScript.Echo("PASSED");