blob: 9cdeaf44dd8ef0efc94a9b2a7aa37ecf83d8115a [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.
//-------------------------------------------------------------------------------------------------------
"use strict";
function testFromInsideFunction() {
var a = 2;
var b = 0;
var c = eval("eval('var b = 3; a + b;');");
WScript.Echo(a, b, c);
}
testFromInsideFunction();
var a = 2;
var b = 0;
var c = eval("eval('var b = 3; a + b;');");
WScript.Echo(a, b, c);