blob: d0a4c5b02d516de1164e6f9f5ca660e77467246c [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
eval = function(){};
Get_ed = function () { return "ed"; }
Get_Fail = function () { return "Fail"; }
function foo()
{
var Pa = "Pa" + "ss";
var Pass = Pa + Get_ed();
var PaFail = Pa + Get_Fail();
eval();
WScript.Echo(Pass);
}
foo()