blob: 3d1dfb11387e6959082ffd41e9889e1bfeee825d [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 test0(x) {
for(var i = 0; i < 2; ++i) {
x ? o.length : 1;
x ? 0 : 1;
}
};
test0(1);