bug15490382.js 553 B

1234567891011121314151617181920212223
  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. function bar(x)
  6. {
  7. if (x != x)
  8. {
  9. return;
  10. }
  11. }
  12. function foo()
  13. {
  14. bar(typeof arguments[0]);
  15. };
  16. foo();
  17. foo();
  18. foo();
  19. WScript.Echo("Passed");