blob: 7712e9276f09fe1fcc8eaa3bf6de34fd0ec70f1b [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.
//-------------------------------------------------------------------------------------------------------
function f() {}
var g = {};
function test()
{
var obj1 = {}
for (var i = 0; i < 2; i++)
{
var obj6 = obj1;
obj6.blah;
f();
var obj6 = g;
var obj1 = {};
g.blah;
}
}
test({});
test({});