blob: 61a0454b1cfbb7c505f80401859267226ce8ab0b [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) {
var z = 1+x;
return x ? 0 : 1;
}
test0(1.1);
test0(1.1);
WScript.Echo("PASSED");