blob: 09fc93c4da0334c34366e0d619a698d4dd3e89db [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function main()
{
var a; // a = undefined
var e = 0;
// We shouldn't invert this branch as relational comparison involving
// undefined always returns false.
if (!(a >= 1))
e = true;
WScript.Echo("e = " + e);
}
main();