bug10191241.js 536 B

123456789101112131415
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. var value = 10;
  6. function f1(arguments)
  7. {
  8. if (arguments === value) {
  9. print("PASSED");
  10. } else {
  11. print("FAILED : " + arguments);
  12. }
  13. }
  14. f1(value);