blob: ce53203025c1c3c78e872622c8af21e0f6d46313 [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.
//-------------------------------------------------------------------------------------------------------
var value = 10;
function f1(arguments)
{
if (arguments === value) {
print("PASSED");
} else {
print("FAILED : " + arguments);
}
}
f1(value);